From eb2ee49aef0da0af4aee65fb82967758449904e6 Mon Sep 17 00:00:00 2001 From: Enrique Ortiz Date: Thu, 16 Apr 2020 23:30:02 -0400 Subject: [PATCH] Initial template setup --- .eslintrc.json | 31 + .github/workflows/run_cli.yml | 40 + .github/workflows/run_sc.yml | 42 + .gitignore | 2 + .prettierignore | 3 + .prettierrc | 10 + README.md | 3 + config/addressbook.json | 2 + config/dao.json | 10 + config/project.json | 20 + config/weights.json | 25 + .../v1/data/projects/QEFyYUNyZWQ/cred.json | 1 + .../QEFyYUNyZWQ/pluginDeclarations.json | 1 + .../v1/data/projects/QEFyYUNyZWQ/project.json | 1 + .../projects/QEFyYUNyZWQ/weightedGraph.json | 1 + docs/asset-manifest.json | 14 + docs/discord-invite/index.html | 22 + docs/favicon.png | Bin 0 -> 2579 bytes docs/index.html | 22 + docs/prototype/@AraCred/index.html | 22 + docs/prototype/index.html | 22 + docs/static/js/main.e0361f59.js | 64 + docs/static/js/main.e0361f59.js.map | 1 + docs/static/js/ssr.da9aa522.js | 72 + docs/static/js/ssr.da9aa522.js.map | 1 + docs/test/FileUploader/index.html | 23 + docs/test/TimelineCredView/index.html | 34 + docs/timeline/@AraCred/index.html | 22 + log/.deleteme | 1 + package-lock.json | 41086 ++++++++++++++++ package.json | 61 + scores.json | 770 + src/mint.js | 40 + src/processGrain.js | 87 + src/setupAragon.js | 43 + 35 files changed, 42599 insertions(+) create mode 100644 .eslintrc.json create mode 100644 .github/workflows/run_cli.yml create mode 100644 .github/workflows/run_sc.yml create mode 100644 .gitignore create mode 100644 .prettierignore create mode 100644 .prettierrc create mode 100644 README.md create mode 100644 config/addressbook.json create mode 100644 config/dao.json create mode 100644 config/project.json create mode 100644 config/weights.json create mode 100644 docs/api/v1/data/projects/QEFyYUNyZWQ/cred.json create mode 100644 docs/api/v1/data/projects/QEFyYUNyZWQ/pluginDeclarations.json create mode 100644 docs/api/v1/data/projects/QEFyYUNyZWQ/project.json create mode 100644 docs/api/v1/data/projects/QEFyYUNyZWQ/weightedGraph.json create mode 100644 docs/asset-manifest.json create mode 100644 docs/discord-invite/index.html create mode 100644 docs/favicon.png create mode 100644 docs/index.html create mode 100644 docs/prototype/@AraCred/index.html create mode 100644 docs/prototype/index.html create mode 100644 docs/static/js/main.e0361f59.js create mode 100644 docs/static/js/main.e0361f59.js.map create mode 100644 docs/static/js/ssr.da9aa522.js create mode 100644 docs/static/js/ssr.da9aa522.js.map create mode 100644 docs/test/FileUploader/index.html create mode 100644 docs/test/TimelineCredView/index.html create mode 100644 docs/timeline/@AraCred/index.html create mode 100644 log/.deleteme create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 scores.json create mode 100644 src/mint.js create mode 100644 src/processGrain.js create mode 100755 src/setupAragon.js diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..5f3705c --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,31 @@ +{ + "env": { + "browser": true, + "es6": true, + "jest": true + }, + "plugins": [], + "extends": ["airbnb-base", "prettier"], + "globals": { + "Atomics": "readonly", + "SharedArrayBuffer": "readonly" + }, + "parserOptions": { + "ecmaVersion": 2018, + "sourceType": "module" + }, + "rules": { + "no-unused-vars": [ + "error", + { + "vars": "local", + "args": "none" + } + ], + "indent": ["error", 2], + "linebreak-style": ["error", "unix"], + "quotes": ["error", "single"], + "semi": "off", + "no-console": "off" + } +} diff --git a/.github/workflows/run_cli.yml b/.github/workflows/run_cli.yml new file mode 100644 index 0000000..5f02d05 --- /dev/null +++ b/.github/workflows/run_cli.yml @@ -0,0 +1,40 @@ +name: "Run aragonCLI" + +on: + # Trigger on merging to master. + push: + branches: + - master + # As well as every 6 hours. + schedule: + - cron: 0 */24 * * * + +jobs: + build: + runs-on: "ubuntu-latest" + + strategy: + matrix: + node-version: [12.x] + + steps: + - uses: "actions/checkout@v2" + - name: "Use Node.js ${{ matrix.node-version }}" + uses: "actions/setup-node@v1" + with: + node-version: "${{ matrix.node-version }}" + INFURA_KEY: "${{ secrets.INFURA_KEY }}" + PRIVATE_KEY: "${{ secrets.PRIVATE_KEY }}" + - name: Setup aragonCLI signer + run: node ./src/setupAragon.js + env: + INFURA_KEY: "${{ secrets.INFURA_KEY }}" + PRIVATE_KEY: "${{ secrets.PRIVATE_KEY }}" + - name: Install Aracred + run: npm ci + - name: Install Aragon + run: npm install -g @aragon/cli + - name: Prepare transaction + run: node ./src/processGrain.js + - name: Sending Transaction + run: node ./src/mint.js | sh diff --git a/.github/workflows/run_sc.yml b/.github/workflows/run_sc.yml new file mode 100644 index 0000000..1681dd7 --- /dev/null +++ b/.github/workflows/run_sc.yml @@ -0,0 +1,42 @@ +name: "Run SourceCred" + +on: + # Trigger on merging to master. + push: + branches: + - master + # As well as every 6 hours. + schedule: + - cron: 0 */6 * * * + +jobs: + build: + runs-on: "ubuntu-latest" + + strategy: + matrix: + node-version: [12.x] + + steps: + - name: Checkout Repository + uses: actions/checkout@v1 + - name: SourceCred Cache + uses: actions/cache@v1 + with: + # cred-action uses *workspace*/sourcecred_data as it's SOURCECRED_DIRECTORY. Only store the cache from that. + path: sourcecred_data/cache + key: SC_CACHE-${{ hashFiles('**/project.json') }}-${{ github.run_id }} + restore-keys: | + SC_CACHE-${{ hashFiles('**/project.json') }}- + SC_CACHE- + - name: Run SourceCred + uses: vsoch/cred-action@wip-discord-cache + env: + token: ${{ secrets.GITHUB_TOKEN }} + SOURCECRED_DISCORD_TOKEN: ${{ secrets.SOURCECRED_DISCORD_TOKEN }} + with: + weights: ./config/weights.json + project: "@AraCred" + project-file: ./config/project.json + branch-against: master + automated: "true" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..76efb07 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +.vscode diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..a725da2 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,3 @@ +log +docs +node_modules diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..e5f166c --- /dev/null +++ b/.prettierrc @@ -0,0 +1,10 @@ +{ + "printWidth": 80, + "semi": true, + "tabWidth": 2, + "singleQuote": true, + "trailingComma": "all", + "bracketSpacing": false, + "jsxBracketSameLine": false, + "proseWrap": "always" +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..52b1825 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Aracred Template + +This is the official, forkable Aracred template. Please see the [AraCred Deployment page](https://aracred.github.io/website/docs/deploymentOverview/) for info on how to setup and run AraCred. diff --git a/config/addressbook.json b/config/addressbook.json new file mode 100644 index 0000000..0d4f101 --- /dev/null +++ b/config/addressbook.json @@ -0,0 +1,2 @@ +[ +] diff --git a/config/dao.json b/config/dao.json new file mode 100644 index 0000000..e5f692c --- /dev/null +++ b/config/dao.json @@ -0,0 +1,10 @@ +[ + { + "daoAddress": "", + "tokenManagerAddress": "", + "votingAddress": "", + "environment": "", + "mints": [], + "burns": [] + } +] diff --git a/config/project.json b/config/project.json new file mode 100644 index 0000000..c615314 --- /dev/null +++ b/config/project.json @@ -0,0 +1,20 @@ +[ + { + "type": "sourcecred/project", + "version": "0.4.0" + }, + { + "id": "", + "discord": { + "guildId": "", + "reactionWeights": { + "👍": 1, + "🔥": 1, + "❤️": 1, + "🙏": 1 + } + }, + "identities": [], + "repoIds": [] + } +] diff --git a/config/weights.json b/config/weights.json new file mode 100644 index 0000000..2f59d82 --- /dev/null +++ b/config/weights.json @@ -0,0 +1,25 @@ +[ + { + "type": "sourcecred/weights", + "version": "0.2.0" + }, + { + "edgeWeights": {}, + "nodeWeights": { + "N\u0000sourcecred\u0000github\u0000COMMENT\u0000": 0.5, + "N\u0000sourcecred\u0000github\u0000COMMIT\u0000": 1, + "N\u0000sourcecred\u0000github\u0000ISSUE\u0000": 1, + "N\u0000sourcecred\u0000github\u0000PULL\u0000": 16, + "N\u0000sourcecred\u0000github\u0000REPO\u0000": 4, + "N\u0000sourcecred\u0000github\u0000REVIEW\u0000": 4, + "N\u0000sourcecred\u0000discourse\u0000like\u0000": 4, + "N\u0000sourcecred\u0000discourse\u0000post\u0000": 0, + "N\u0000sourcecred\u0000discourse\u0000topic\u0000": 0, + "N\u0000sourcecred\u0000discourse\u0000user\u0000": 0, + "N\u0000sourcecred\u0000discord\u0000REACTION\u0000629411717704712192\u0000": 4, + "N\u0000sourcecred\u0000discord\u0000REACTION\u0000629412800346849302\u0000": 4, + "N\u0000sourcecred\u0000discord\u0000REACTION\u0000635151982298136587\u0000": 3, + "N\u0000sourcecred\u0000github": 2 + } + } +] diff --git a/docs/api/v1/data/projects/QEFyYUNyZWQ/cred.json b/docs/api/v1/data/projects/QEFyYUNyZWQ/cred.json new file mode 100644 index 0000000..2f0e3bd --- /dev/null +++ b/docs/api/v1/data/projects/QEFyYUNyZWQ/cred.json @@ -0,0 +1 @@ +[{"type":"sourcecred/timelineCred","version":"0.6.0"},{"credJSON":{"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000bot\u0000699326460120530944\u0000":[0,0,0,0,0,0,0,0,4.864651269928346],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000143776454050709505\u0000":[0,0,0,0,0,0,0,0,0.2890662234973351],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000199630270285086720\u0000":[0,0,0,0,0,0,0,0,0.5030042308224497],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000208321561982271489\u0000":[0,0,0,0,0,0,0,0,0.45330148289884065],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000291388682710024192\u0000":[0,0,0,0,0,0,0,0.04887012356483164,0.20833037099805962],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000333143183355543552\u0000":[0,0,0,0,0,0,0,0,0.24865459892323535],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000371754999304290304\u0000":[0,0,0,0,0,0,0,0.47004101921331426,0.18493366269910522],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000440281764204642314\u0000":[0,0,0,0,0,0,0,0.9500604102647839,0.6546588301073614],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000464169801036726292\u0000":[0,0,0,0,0,0,0,0,5.249787385920487],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000505789102222737420\u0000":[0,0,0,0,0,0,0,0,0.8255831768684478],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000537858848912834561\u0000":[0,0,0,0,0,0,0,0.6991212793973383,1.667341760510741],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000633708951447535616\u0000":[0,0,0,0,0,0,0,0,0.2890662234973351],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000665203331639148553\u0000":[0,0,0,0,0,0,0,0.47004101921331426,3.675305368239791],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000683892894767251489\u0000":[0,0,0,0,0,0,0,0.9949079965680416,0.7175196124205165],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000695669843034243134\u0000":[0,0,0,0,0,0,15.793401152041207,3.5625431382379897,1.6587180040471414],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696451005914546256\u0000":[0,0,0,0,0,0,0,0.8138909379846473,0.33218081220401463],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696454968831508630\u0000":[0,0,0,0,0,0,0,1.6623995382996297,0.918706574131523],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696455224532926464\u0000":[0,0,0,0,0,0,0,1.6623995382996297,0.918706574131523],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696609260196593664\u0000":[0,0,0,0,0,0,0,0.32007889052462635,0.15893486686759903],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696708274682069062\u0000":[0,0,0,0,0,0,0,0.8250349239401964,0.37957389413363224],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696730540039995493\u0000":[0,0,0,0,0,0,0,3.986146918266547,1.7960215948705813],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696740396331696198\u0000":[0,0,0,0,0,0,0,1.1608792794698608,0.3460429075371611],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696769305131614260\u0000":[0,0,0,0,0,0,0,1.1608792794698608,0.451317158794113],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696853096441184326\u0000":[0,0,0,0,0,0,0,0.5186170189177629,0.248638718366263],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698673271729553469\u0000":[0,0,0,0,0,0,0,0.2907364738234532,0.17431045733458456],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698691171811328080\u0000":[0,0,0,0,0,0,0,0,0.7364950399323268],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698710294427467857\u0000":[0,0,0,0,0,0,0,0,0.6877664492564477],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698710365046833192\u0000":[0,0,0,0,0,0,0,0,0.44316272816770047],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698799127244308550\u0000":[0,0,0,0,0,0,0,0,0.8277025537554966],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698897288373993508\u0000":[0,0,0,0,0,0,0,0,0.9158414389718198],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698919569078878289\u0000":[0,0,0,0,0,0,0,0,0.6380770908712164],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698921167011971168\u0000":[0,0,0,0,0,0,0,0,0.8514141232005781],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698921390845198426\u0000":[0,0,0,0,0,0,0,0,3.3342423499719906],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698932174396850236\u0000":[0,0,0,0,0,0,0,0,0.6187833422299976],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698935929942966332\u0000":[0,0,0,0,0,0,0,0,0.921015702439386],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698941350531301477\u0000":[0,0,0,0,0,0,0,0,0.7364950399323268],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698946297012420619\u0000":[0,0,0,0,0,0,0,0,0.1418851491814691],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698965088530595990\u0000":[0,0,0,0,0,0,0,0,1.4284816269200358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698965418370400296\u0000":[0,0,0,0,0,0,0,0,3.834072676878962],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698968459890917436\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698968989878976612\u0000":[0,0,0,0,0,0,0,0,1.13638453539405],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698969370533298296\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698969730580742174\u0000":[0,0,0,0,0,0,0,0,3.4864621034683836],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698970943955140738\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698973708316049488\u0000":[0,0,0,0,0,0,0,0,2.325356557567485],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698982179069362196\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699006982681657354\u0000":[0,0,0,0,0,0,0,0,0.7590301523983607],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699007297099268116\u0000":[0,0,0,0,0,0,0,0,0.6380770908712164],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699016223303794728\u0000":[0,0,0,0,0,0,0,0,0.890236597890327],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699020835096231937\u0000":[0,0,0,0,0,0,0,0,1.5493293612818269],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699021694240686190\u0000":[0,0,0,0,0,0,0,0,3.424278132202893],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699022762215211088\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699024432244588644\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699025335148216410\u0000":[0,0,0,0,0,0,0,0,6.136509891831894],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699124769349566484\u0000":[0,0,0,0,0,0,0,0,1.0365291883269048],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699137595724267520\u0000":[0,0,0,0,0,0,0,0,1.454089880515629],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699302777167413379\u0000":[0,0,0,0,0,0,0,0,0.8153595736831919],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699304903796981771\u0000":[0,0,0,0,0,0,0,0,0.8859628109803463],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699306499930980452\u0000":[0,0,0,0,0,0,0,0,0.9711860351989652],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699318638519255111\u0000":[0,0,0,0,0,0,0,0,0.8153595736831919],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699325373472702534\u0000":[0,0,0,0,0,0,0,0,0.9711860351989652],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699325915578236949\u0000":[0,0,0,0,0,0,0,0,0.8153595736831919],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699326575627206778\u0000":[0,0,0,0,0,0,0,0,3.3415126796994383],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699342838756016128\u0000":[0,0,0,0,0,0,0,0,0.6600907011336299],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699358233437143163\u0000":[0,0,0,0,0,0,0,0,1.1709487323798478],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699383579402174494\u0000":[0,0,0,0,0,0,0,0,0.5118599755390989],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699636647557464194\u0000":[0,0,0,0,0,0,0,0,0.2549679981620915],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699696022477340735\u0000":[0,0,0,0,0,0,0,0,1.0707011729623235],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000700038397376331798\u0000":[0,0,0,0,0,0,0,0,0.6400792003014566],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344917068906598\u0000697073300131807274\u0000":[0,0,0,0,0,0,0,0.989227854816776,0.39761350871374895],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344917068906598\u0000697081143551328256\u0000":[0,0,0,0,0,0,0,0.9208171712258714,0.37217354830236443],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344917068906598\u0000697318813192028200\u0000":[0,0,0,0,0,0,0,0.7041599751123904,0.14214272842911918],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344917068906598\u0000697375832364023889\u0000":[0,0,0,0,0,0,0,1.1192752466201035,0.46182060052497975],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696400331260821586\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,7.679349799877596,4.802490168551754],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696400331260821586\u0000699287660589613148\u0000":[0,0,0,0,0,0,0,0,7.379543597864231],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696427343220047872\u0000":[0,0,0,0,0,0,0,3.8446717159891404,1.629304469071086],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696440757908799568\u0000":[0,0,0,0,0,0,0,0.989227854816776,0.39761350871374895],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696441890048049232\u0000":[0,0,0,0,0,0,0,3.8446717159891404,1.629304469071086],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696452154268975225\u0000":[0,0,0,0,0,0,0,0.989227854816776,0.39761350871374895],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696730851802742794\u0000":[0,0,0,0,0,0,0,0.8836259424134302,0.33816085288158737],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696789204767866911\u0000":[0,0,0,0,0,0,0,0.861116910839377,0.318190972389073],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699020484167073792\u0000":[0,0,0,0,0,0,0,0,0.7949092765482901],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699122711745527878\u0000":[0,0,0,0,0,0,0,0,0.8717340373350699],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699123164340551691\u0000":[0,0,0,0,0,0,0,0,3.2566781685696053],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699274952301609111\u0000":[0,0,0,0,0,0,0,0,0.3932819261217823],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699275129204637708\u0000":[0,0,0,0,0,0,0,0,0.4593340728953454],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699275497984622760\u0000":[0,0,0,0,0,0,0,0,3.1963258691538714],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699276546795372595\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699277478530646016\u0000":[0,0,0,0,0,0,0,0,0.3932819261217823],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699278809974833224\u0000":[0,0,0,0,0,0,0,0,0.6640961721754783],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699404949448163368\u0000":[0,0,0,0,0,0,0,0,0.8825997055448322],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699406916300046346\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699407535194767410\u0000":[0,0,0,0,0,0,0,0,1.323276776142817],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699408033343733841\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699410487020093501\u0000":[0,0,0,0,0,0,0,0,0.6416166707486863],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699558251074682931\u0000":[0,0,0,0,0,0,0,0,0.4849423264909387],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699560532046250034\u0000":[0,0,0,0,0,0,0,0,2.003894300058392],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699939694221328435\u0000":[0,0,0,0,0,0,0,0,0.9735810035548944],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700016555521736837\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700064770367160361\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700064920104075394\u0000":[0,0,0,0,0,0,0,0,3.1963258691538714],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700073516900417556\u0000":[0,0,0,0,0,0,0,0,0.5050924358584444],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700078148615798814\u0000":[0,0,0,0,0,0,0,0,0.8569948644633394],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700083246087667833\u0000":[0,0,0,0,0,0,0,0,0.5307006894540378],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700085865933832252\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700087985634541678\u0000":[0,0,0,0,0,0,0,0,2.876439460562224],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700345588725841990\u0000":[0,0,0,0,0,0,0,0,0.8056818905615067],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700354840445976616\u0000":[0,0,0,0,0,0,0,0,0.8056818905615067],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700468593451597902\u0000":[0,0,0,0,0,0,0,0,0.589594554267089],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000698667046661128244\u0000":[0,0,0,0,0,0,0,0.8138909379846473,0.33218081220401463],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000698672127418695751\u0000":[0,0,0,0,0,0,0,0.2907364738234532,0.17431045733458456],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000698673539011837994\u0000":[0,0,0,0,0,0,0,0.2907364738234532,0.17431045733458456],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000698683402920001637\u0000":[0,0,0,0,0,0,0,0.8212265421599406,0.3283369145872682],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000698956579168321617\u0000":[0,0,0,0,0,0,0,0,0.17469113220183918],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000699017594287685672\u0000":[0,0,0,0,0,0,0,0,0.656411448656782],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000699283043940302898\u0000":[0,0,0,0,0,0,0,0,0.6760514747624523],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000699284090607763506\u0000":[0,0,0,0,0,0,0,0,2.011918233989935],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000699303864872075295\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000699352914476400712\u0000":[0,0,0,0,0,0,0,0,0.6760514747624523],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000698942081858666527\u0000699821888431587439\u0000":[0,0,0,0,0,0,0,0,0.6380770908712164],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000698942081858666527\u0000699822779670724650\u0000":[0,0,0,0,0,0,0,0,2.740651805508814],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700033440564641854\u0000":[0,0,0,0,0,0,0,0,0.5050924358584444],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700036022368731256\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700038868707180644\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700039441799970969\u0000":[0,0,0,0,0,0,0,0,2.8737081819813133],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700040376085381152\u0000":[0,0,0,0,0,0,0,0,3.2236677388902573],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700040917926543422\u0000":[0,0,0,0,0,0,0,0,5.07624490670747],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700040992916766780\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044206176993470\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044421760286721\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044496049799228\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044548411490335\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044635619328131\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044689285316738\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700049028251123832\u0000":[0,0,0,0,0,0,0,0,0.2700645416720245],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700049257490808933\u0000":[0,0,0,0,0,0,0,0,0.2700645416720245],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700049378643017889\u0000":[0,0,0,0,0,0,0,0,0.2700645416720245],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700051768008114186\u0000":[0,0,0,0,0,0,0,0,0.5227432451827331],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700055780807802900\u0000":[0,0,0,0,0,0,0,0,0.9452371508970575],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700056792524128306\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059334679330946\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059353306234910\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059384751063091\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059438136033361\u0000":[0,0,0,0,0,0,0,0,0.5050924358584444],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059438526103572\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059538023514154\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700061097583050871\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700062058405953678\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700062189503119381\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700062400774275204\u0000":[0,0,0,0,0,0,0,0,0.2700645416720245],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700063628711166054\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700064631778967634\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700064632144003103\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700118599003668510\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700335319349985310\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700335919315550299\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700365992571699350\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700366555233517630\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700367514638483537\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700369922630615040\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700370207419662458\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700370372230643763\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700371208880914563\u0000":[0,0,0,0,0,0,0,0,0.37587061320720416],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700371209241624656\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700371558480216124\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397237930295386\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397481799974962\u0000":[0,0,0,0,0,0,0,0,0.3932819261217823],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397482362011769\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397866581229620\u0000":[0,0,0,0,0,0,0,0,0.3369158507563803],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397927478067221\u0000":[0,0,0,0,0,0,0,0,0.3369158507563803],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397997707755530\u0000":[0,0,0,0,0,0,0,0,0.589594554267089],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700398207733334077\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700398301412982965\u0000":[0,0,0,0,0,0,0,0,0.3932819261217823],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700398301727555604\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700399163313094746\u0000":[0,0,0,0,0,0,0,0,0.42760069834410663],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000❤️\u0000571023281382227978\u0000695669843034243134\u0000":[0,0,0,0,0,0,9.491030649933052,2.102674780169771,0.9829267819635068],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696454968831508630\u0000":[0,0,0,0,0,0,0,1.1576791810845732,0.8113209350923755],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696455224532926464\u0000":[0,0,0,0,0,0,0,1.1576791810845732,0.8113209350923755],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699021694240686190\u0000":[0,0,0,0,0,0,0,0,2.8549560887730276],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699025335148216410\u0000":[0,0,0,0,0,0,0,0,2.9665404483952162],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000571023281382227978\u0000695669843034243134\u0000":[0,0,0,0,0,0,9.491030649933052,2.102674780169771,0.9829267819635068],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699025335148216410\u0000":[0,0,0,0,0,0,0,0,3.491621306340761],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699326575627206778\u0000":[0,0,0,0,0,0,0,0,3.3761427928883205],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000571023281382227978\u0000696730540039995493\u0000":[0,0,0,0,0,0,0,3.982503166842193,1.8593283408788632],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000657069807505637397\u0000698965418370400296\u0000":[0,0,0,0,0,0,0,0,3.39931772399119],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000250086586450968576\u0000698969730580742174\u0000":[0,0,0,0,0,0,0,0,2.7783869931179987],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000321092785921064961\u0000698973708316049488\u0000":[0,0,0,0,0,0,0,0,2.271125715626497],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000571023281382227978\u0000698921390845198426\u0000":[0,0,0,0,0,0,0,0,3.78567750789546],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000118260545211072517\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,1.3720071893756527,0.9510524467152429],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000250086586450968576\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,1.0734614042416215,1.5308833445354133],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,1.0386370157276195,0.6030874255737584],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000699287660589613148\u0000":[0,0,0,0,0,0,0,0,1.134814121998158],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000321092785921064961\u0000699287660589613148\u0000":[0,0,0,0,0,0,0,0,2.456885463154436],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000440281764204642314\u0000699287660589613148\u0000":[0,0,0,0,0,0,0,0,1.4704223763508875],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,4.178387314716311,1.9987135795179904],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000699287660589613148\u0000":[0,0,0,0,0,0,0,0,3.9239691256617006],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000683892894767251489\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,1.4894182521540893,0.8895067314471731],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696427343220047872\u0000":[0,0,0,0,0,0,0,4.051496152649139,1.6873169805897865],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696441890048049232\u0000":[0,0,0,0,0,0,0,4.051496152649139,1.6873169805897865],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000699123164340551691\u0000":[0,0,0,0,0,0,0,0,3.372151499251379],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000700087985634541678\u0000":[0,0,0,0,0,0,0,0,3.3542612461074874],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000321092785921064961\u0000699560532046250034\u0000":[0,0,0,0,0,0,0,0,2.256000899533674],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000699275497984622760\u0000":[0,0,0,0,0,0,0,0,3.779188519646377],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000700064920104075394\u0000":[0,0,0,0,0,0,0,0,3.779188519646377],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420197644632116\u0000👍\u0000537858848912834561\u0000699284090607763506\u0000":[0,0,0,0,0,0,0,0,1.775192838776758],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000698942081858666527\u0000👍\u0000250086586450968576\u0000699822779670724650\u0000":[0,0,0,0,0,0,0,0,2.822791638898972],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000👍\u0000657069807505637397\u0000700040376085381152\u0000":[0,0,0,0,0,0,0,0,3.370598232379073],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000321092785921064961\u0000700040917926543422\u0000":[0,0,0,0,0,0,0,0,2.387297713243203],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000657069807505637397\u0000700040917926543422\u0000":[0,0,0,0,0,0,0,0,3.4445048057787653],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000🔥\u0000363774203960360961\u0000700039441799970969\u0000":[0,0,0,0,0,0,0,0,3.571121614462379],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000014\u0000612693703\u0000":[0,0,0,0,0,0,0,0,2.2083855471689513],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000014\u0000612962510\u0000":[0,0,0,0,0,0,0,0,2.2083855471689513],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000016\u0000613151713\u0000":[0,0,0,0,0,0,0,0,2.169104437429377],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000018\u0000612842722\u0000":[0,0,0,0,0,0,0,0,1.785761459570905],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000018\u0000612918834\u0000":[0,0,0,0,0,0,0,0,7.0085272320304846],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000018\u0000613069946\u0000":[0,0,0,0,0,0,0,0,2.259239474901116],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000022\u0000613141085\u0000":[0,0,0,0,0,0,0,0,2.1229854575432836],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000022\u0000613146304\u0000":[0,0,0,0,0,0,0,0,2.1229854575432836],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000022\u0000613226248\u0000":[0,0,0,0,0,0,0,0,2.1229854575432836],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000025\u0000613347004\u0000":[0,0,0,0,0,0,0,0,2.069135039786197],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000026\u0000613797792\u0000":[0,0,0,0,0,0,0,0,1.9183763701615497],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000TheSource\u00003\u0000613030762\u0000":[0,0,0,0,0,0,0,0,2.3435869225856587],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000bot\u00003\u0000614314292\u0000":[0,0,0,0,0,0,0,0,1.9143338106729881],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000612563994\u0000":[0,0,0,0,0,0,0,0,2.0415823047152575],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000612990333\u0000":[0,0,0,0,0,0,0,0,1.8325788453964467],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000613020677\u0000":[0,0,0,0,0,0,0,0,4.084794256846277],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000613024850\u0000":[0,0,0,0,0,0,0,0,1.8325788453964467],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000613026757\u0000":[0,0,0,0,0,0,0,0,4.085338659526266],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000613028322\u0000":[0,0,0,0,0,0,0,0,1.8325788453964467],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000614088358\u0000":[0,0,0,0,0,0,0,0,1.5681042893850463],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00002\u0000612630503\u0000":[0,0,0,0,0,0,0,0,2.0286092240769777],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00003\u0000612642927\u0000":[0,0,0,0,0,0,0,0,2.0286092240769777],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00004\u0000613343876\u0000":[0,0,0,0,0,0,0,0,1.6971795661585576],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612843090\u0000":[0,0,0,0,0,0,0,0,5.897199960639527],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612844672\u0000":[0,0,0,0,0,0,0,0,5.897199960639527],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612910606\u0000":[0,0,0,0,0,0,0,0,2.2828610171930994],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612911587\u0000":[0,0,0,0,0,0,0,0,2.283165266347721],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612939366\u0000":[0,0,0,0,0,0,0,0,1.8096872510175104],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612942113\u0000":[0,0,0,0,0,0,0,0,3.797972509135929],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000614058561\u0000":[0,0,0,0,0,0,0,0,1.8096872510175104],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000PULL\u0000aracred\u0000AraCred\u000020\u0000613089159\u0000":[0,0,0,0,0,0,0,0,7.1636638527464065],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000PULL\u0000aracred\u0000bot\u00009\u0000614948916\u0000":[0,0,0,0,0,0,0,0,3.430680905101539],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000REVIEW\u0000aracred\u0000bot\u00008\u0000395001410\u0000409850216\u0000":[0,0,0,0,0,0,0,0,5.886415358628594],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000REVIEW\u0000aracred\u0000bot\u00008\u0000395001410\u0000409850385\u0000":[0,0,0,0,0,0,0,0,5.886415358628594],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000REVIEW\u0000aracred\u0000bot\u00008\u0000395001410\u0000409850667\u0000":[0,0,0,0,0,0,0,0,5.886415358628594],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU=\u0000":[0,0,0,0,0,0,0,0,4.805124523789138],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM=\u0000":[0,0,0,0,0,0,0,0,1.5140354659516253],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI=\u0000":[0,0,0,0,0,0,0,0,5.67283832708971],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI=\u0000":[0,0,0,0,0,0,0,5.668697961008088,2.6945667955152737],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk=\u0000":[0,0,0,0,0,0,0,0,1.5140354659516253],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ=\u0000":[0,0,0,0,0,0,0,0,1.5140354659516253],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE=\u0000":[0,0,0,0,0,0,0,5.668697961008088,2.6945667955152737],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE=\u0000":[0,0,0,0,0,0,0,5.668697961008088,2.6945667955152737],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI=\u0000":[0,0,0,0,0,0,0,0,1.5140354659516253],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjA3ZTBlNWYwMGUxOGUwMGExMjg5MmI0N2JkM2Y1Yjg3NDE4Mzc3ZDU=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg=\u0000":[0,1.8402962895797383,1.7197308023958298,1.2218292614972768,0.6457663648345233,0.254046641024355,0.21537399862506262,0.02763092032570716,0.014949331621571863],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjAyNDVhNDAwMmEzNWMyYWRjY2ZlZDFmNjhhNjc1YzMwYmE4NzFiYTU=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjBlNDY4ODQzMTkxYWQzYTI0ZmY1YjgwM2IyZTM4OGExMmU4OGEyODk=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjE1YTgxMjdiYzU0MDJjNzIyNGJjNTkyZjg5MGE1YmQ3Zjc5M2M2YTU=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY=\u0000":[0,0,0,0,0,4.546330642677111,3.8411228490461045,0.2238542667950456,0.14401586666680344],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjExZmNkMDlhMGNkZTA4YWYwOGI1YzVjOTUxZjU0YzE1MGNmNDdlYTE=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjEyMjJlNDliNDI2OWYxNWIyYzcxY2ZlNGI2MmIxMzMzYWJlZWE1ODE=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjEyY2YwZjE2ZDQwNmYxNGMyNTk3YWJjMTMwYzRkMmJmYTk5MjdmMzI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjEyZGRkNGUzNTYwN2MwMTg0Yjg5OGM4OThlMjZlNDVjNjAxNzY0MmQ=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjEzNjM0NDE0MzM3ZTczMGZiY2I0MDNlMjY1N2E4MDA3MzQ3ZGRkOGQ=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjEzZmM1MGQyMmUyMzUzY2YyYmIzODk0OGNhZTRmYjVmYjU5MWNlNmM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFhNzkyOTQ2MmZjMzU0NDg0MDhmMGQ4NTRhNmM4Yzg5OGMyZGI5NGY=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFjYWMxNWVjYWU1ZTYzNmZkNWQwNDlmYzU5OTNjY2QxMTMxMjZlNDE=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFkYzRhMmMyMzUyNTA0M2E3YjZlMzJhNzk4MzdjYjZhNWE2MmZkOTc=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFlZWQzOGM0Y2ViZDYzYWI2ZmM5NTM3NTY0YTUzMDRhODcwY2FhMGM=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFmMzUwZWFkMjJjYjUwMzkzMmVjMzZiOWQyMWI3MzVlYjk3ZWIyNTY=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjI1YzE2YmI4NTgwMTI3OTE5NjAxOGI0NGVjMGRiMDgzNGZhZGM0YTI=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjI3YjJiZjNkN2RhODNlMDQyOTVhYTFjMjI5N2U1MGNlODE1N2Y0MzU=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjI4YjBlM2YyZDhmZDQyNTY5ZWI4MDNkMTA0MzVhYThjMGVkZjI4ZjQ=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM=\u0000":[0,5.945900044763821,6.0417286611743775,4.289932975287946,2.2643994910383927,0.8901633721002467,0.7517339033426076,0.07371237980338301,0.04134810552560801],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY=\u0000":[0,0,0,0,0,0,0,5.664743609219829,2.8479378413526515],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ=\u0000":[3.3185062856714524,4.086148533673825,4.304126375566893,3.0558748088500636,1.6126656120772132,0.6341496348830186,0.5353475943695781,0.046114944982022746,0.026586381845127592],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjJhMTIwNGI0NGY0NGQ2ZDkzY2Y5NTJlMTgwNGFlZjI1ZmZiZGQ3OGY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjJkNDQxOTFhOTk2OTUxY2NiZWQwMDA5MjgwODk5NjE0ZDYzMTc0Yzk=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjJmNDJhMmEzOTE2ZmU2ZWRlOTdmMWZhYzlhZGMxODk3ZmNiYWEyYmU=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjJmYWQ5YWFiNjg5NzIwMWU2YmMzNTNiOTc0NmMwM2QxZTcyOGQ0MzM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM0NzIzOTYxMTk5NTY1OTM3NDkzODM0MDcxNjY1Yjg3MWE2MzJkNWQ=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM1YmYwODI5YzA2OGFhMjBkZTUxNDY2ZWExMThmNzU0NzcwN2RlMDA=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM2NDA2OGVjOGRiODZiMzc4ZDYzMGY1OTFkYTNhMDJkZTg3MDg3OTg=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE=\u0000":[1.6102710068909003,0.9208832339461835,0.8612373429575801,0.6128586600720601,0.3249266965498496,0.128613443895976,0.11032454794580447,0.014463671332875844,0.008120174520911103],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM=\u0000":[2.0396480399085593,1.1664193779515193,1.0908395320411934,0.7762006461119432,0.41148155017990795,0.1628374851208587,0.13961947661371374,0.018288022825145564,0.010249239621024217],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE=\u0000":[1.6102710068909003,0.9208832339461835,0.8612373429575801,0.6128586600720601,0.3249266965498496,0.128613443895976,0.11032454794580447,0.014463671332875844,0.008120174520911103],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM5MWIzMmJmZGI1YWUzN2QyY2U0MmQzMjMxOWZiYWRkZTcyNjYzZjM=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM5MmU2MDFkMzE3OTUwNmRmZTdlYzBhZDIwY2Q1ZjY3OTY5NmU2NmU=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM5YjBhOTAyYzFjMTc1MTJhNTM2MzgwNTAzYTUwNmZjM2NhNjE1YmI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM5YzZkYWFhNWZjYTYzMDViOTA4Y2RkMjg4MTExMDdlYmE2YmNiZTM=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjMwMDE0YzExODQxYzlhNjA1Y2M5NGQ1MTdlY2U2Yjg2N2FmZDhjZWY=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjMwNzU4ZDA0YWE0ZGE5N2ZjMGFjZWQxZmEyMmNiZGVlNGE4MmM3OTI=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjMwOWE4OTU4NmRhNWUyZDQ0YjQ4YTYwN2M5MzM0YWVmNmY2ZGIzZmI=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjMxMWJmMjZhYTUyNjhhMDY3YjBiZmM4NzA4YTkyMmQyZmQzZDBhODE=\u0000":[0,3.7195152994209737,3.475204571347436,2.468116332875763,1.303467757922359,0.5120274744344562,0.4327726179460594,0.05519486964272052,0.029523447360960808],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjMxN2ZmYTE0NzFhMDE3OTAwN2I4N2Y5M2FhYzIyMjM2NjY0NDNkNDU=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNiNDg3MWMwOWI2NzQ5OGUzMTU3NWI4YWFhOWMwOTQ0M2QxNDJhMDM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNiOGU0ZjU0ODQ1Mzg4ODUxMjkzYjI2MDUzZjRkZjY1YjRkYzk4ZDE=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNiYzk5MzQ4MzRiOGE2NTI5MTQzOWNiYmEyZGFmMDYxNDQ4ZTMwZmU=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNlNWUxNDQ1N2ZhMTQzNDI1ZDI2NGE0ZmE5NDE1OTFkMTk3MzBjZTM=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNmNDdmMDc3MjNiOTdmMDMxMWYzMmI3OGRhOTkzNThkMmM2YWZmYjQ=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Y2YwZmJiYTE4YmYzOTJhNDQ5NjJmYWVkMWUxMzAwZWQ2ZmE0NTk=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Yzg0NDQ3NWM1ZTJiZWI1YWNkZWZjN2U0Y2Q1NGU5MGQyZDg0ZTI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQ2MzllYzhkYmExMmU4YzdkM2IwYmY1ODliOGM4YTA5YzUyMmFlNDc=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQ4ZTViNDQ2N2M2MTA3MDQwYzEwN2Q1NWJjMmZiZTA3YTU3ZWEzYTA=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk=\u0000":[0,0,2.980033682444486,2.117372060232604,1.1192175659078023,0.44040453347040226,0.3735423863041506,0.023822269512612713,0.028295513019482466],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk=\u0000":[0,1.6703550785070889,1.9261530699472535,1.368030352245376,0.7225483883281283,0.28512867038482137,0.2417278090876061,0.014183304782849153,0.009246542386083287],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQxOWQzOWQ4N2ViMzE5NjVhOGY1Nzc1MDc1Y2I4MGJlNmE1N2FiZDY=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQzMjA0MmY2Zjk2NWJiMTEzYWQ1MDk1MGNmZGJiODJjNDRmMGRjNTk=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjRhOTA3MzQ4MzJhZTRhZDMyOGZjMDYyNzEyZTJkZWNhODhkN2RjYzQ=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjRiNGM5ZWE5NzA1NDY1ZDM5ZjMzYjM5ZWEzOTgxOWM5Yzc3YWE3OGI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM=\u0000":[1.6094131107210348,0.9199030497385774,0.8594078434429695,0.610265930134919,0.3222005594276431,0.12649102273474297,0.10680034600079283,0.013595733405552219,0.007252275371820406],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjU1NGM5NjQzOGZkYmVlMjAzMWI4YjVhYzE2YWEyZDZkYjZhN2Y0MGY=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjU2MTcyYjYwODc0MDBmYTgxYzEzZjM5ZjM3YjIzZWMxMWRlM2M5YjI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjU3ODU0NGQwNTU3NjE0YzAwNzgwMDg5ZmE5ZjgzNDM5NTBmOTc3ZmM=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjUwOWQ4YzAzYjFhNjcxMjlhM2U5ODA3M2RkMjRmOTM3MjNjZGZlNDE=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjUxMzA4NjIxZWMyODQzMzUwODUyZmQzMWY4YzBhYTA4ZDZkNmE4MDk=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjVhZmI0ZTA4MTcwYzFiZDJlOWY1ZmI0ZGQ0MmM2ZWY1ZTJkMjM4Nzg=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjViODVhNzQwNTQ4OWY3MjBlZDBiOWNiNTE1MGMyNjE5ZDQ1YzllOWQ=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjVjNjIxZWU0YzY0NDcxM2EyNjI3YWZiZmVkNzQ1NDgyZmU1NTI1ZWY=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjVjOGU2OTVhZDM0MGU2NWU4NTg2MmRjODIwMmQxN2U3M2Q5NWJjM2U=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA=\u0000":[0,0,2.978842978870949,2.115681881644401,1.1174346654016085,0.43900754127412356,0.3711931220899974,0.023527741993941663,0.02761904863368201],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjY1NTI0MDk3ZWQ1ZGUzYTgxNWU5ODliZDQyMGUzODE3N2ZlNzBiY2E=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjY1ZDJjYTM0M2M1MTAyMDQ3ODA5NGJhODdiNWRiNGFmNjQ2NDc0MWE=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjY3ZDQ2MjI5NDg5MzA5MDM1Yjk2ODM5MWU2ZDE0NjExZWJkNWMzZmY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjY5ZDFmYjc5Yjk2ODBmN2VjNWU4NTU0ZjJhOGMwZjgxZDc0ZDlhOWM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjYzNmVjNmExNjA2NGM4YzMzZWI0NzYzMzc1ZDUzYWM1ZDhiZDFhMTA=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjZhOGJmY2EwYzkzNmYzMDRjYzlhMmEzMzk5Njc2YmU0NmFlYTk5NjA=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjZiOTY5OThlN2MyZjhjZTUyZGMwOWViYzllYTUyNGQwN2RlYmUzOGU=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjZkNTFlZTgzNmUxMGU5ZDdiMzgwMDZmNWU0OTY2NTVhZTE4YWQzNjg=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY=\u0000":[0,0,0,0,0,4.546330642677111,3.8411228490461045,0.2238542667950456,0.14401586666680344],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjc4NjAxMzc2NTIyYzMyOWMwOTQwNzU0MDIwZmY0NjU0ZmZlOTM3Yjg=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjc5MzFjZjIwYjUxNDZiY2E2OGU1MWQyNmNkZWJhZGU5YTFkM2E2NjI=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjcxZTA4NDY0YTY1NGIzN2IwNWZlNTM0OTY0OWEwM2Y0NTc5MzNmYTE=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdiNmQ2MTY4N2U1N2QxNWE0NWQxOTViMWVkYjU2NzQ1MWEzMGRiMjk=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdkMWY2ZTJkMTNhYjQ2NzcxOWYyODc4MDJiMTZlNzk5ZGVlYjVlMjY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdkYzQ1MTRjZDQxNWNjOTI2ODI3ZmUwMmNiMjg5MWI4ZDZiODBlNWQ=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA=\u0000":[1.6102710068909003,0.9208832339461835,0.8612373429575801,0.6128586600720601,0.3249266965498496,0.128613443895976,0.11032454794580447,0.014463671332875844,0.008120174520911103],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdmZjc3ODI0ODliNzg5NDE0OWNjNWYyMTFkOWRkYWZjZjg0OTE4ZTk=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE=\u0000":[0,0,2.980033682444486,2.117372060232604,1.1192175659078023,0.44040453347040226,0.3735423863041506,0.023822269512612713,0.028295513019482466],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg1YjZlOGNjYTJkNmJjNTcwOTQ0OTYwNWM4YWM2NDVmZTc0Zjc4ZDU=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg2MTllZTI0NTJlN2JmMTA5MTY5MDE3YWNjOTY4YmJhM2U2ZTEyOWQ=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk=\u0000":[0,0,3.860267902961044,2.7408948649866303,1.4467663072056716,0.5677262258665726,0.4788807302438945,0.06084132811140899,0.032319556577383834],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg5YTE1YjU3NzJkMWRjMjE3MzcxODFkN2RkYTI2Njk1YTBkZmVjY2E=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg5YjMzN2JlZjI5NmRmMTBhOTRjM2IzOGNlMWUyZWY0Mzk2ODg2ZDU=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU=\u0000":[1.6094131107210348,0.9199030497385774,0.8594078434429695,0.610265930134919,0.3222005594276431,0.12649102273474297,0.10680034600079283,0.013595733405552219,0.007252275371820406],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk=\u0000":[0,1.6712454596093442,1.9282054434804017,1.370942604717926,0.725618154210995,0.28754113942129883,0.2457838059920235,0.014651325288990191,0.00983683056802747],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjgxN2NmODk0MGNiODhiYTc5MGM2MDIxY2U1NGJjYjAxOGFhMGNlYjY=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjgxYTY3ZjQ4MTIwNDQ5Mjk0ZDNhYjk0Y2M3Njc3NTVlMGJmMzc4NGU=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjgyNzVkMWI1ZjNhNzc0MjY0ZDU4MzNjMjNkODk1ODM0Mjk0MDA5MmY=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjhkOTYwZjA0MTVlOGNlOGE0NWQ3MDA1YzRlZTM5OWRlNjcyMTQ0ZDQ=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjhkYTMyYmIyNDM2MjE5ZTNhNTU2MzFlNDI2YTcxZDNkNDVkMjdjMzY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I=\u0000":[2.038833077123741,1.1654882911330076,1.0891018364254805,0.7737384847921734,0.40889367910919727,0.16082422937926819,0.1362815686160973,0.01746841750298868,0.00943448155416962],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ=\u0000":[0,2.0658480981752576,1.9296411252473782,1.3697259940477613,0.7226318554191792,0.2832889439650557,0.23852296857678346,0.030211383385960005,0.01598093424860011],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjk0ZTUxZDlhODNjZDY3YjRhZDgyYzY1MjkyMTJlNzJhYWM4NGFmZTc=\u0000":[0,3.7195152994209737,3.475204571347436,2.468116332875763,1.303467757922359,0.5120274744344562,0.4327726179460594,0.05519486964272052,0.029523447360960808],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjk1ZDU4ODRiMTJhNWE1ZjFkMTg1NTIyNzdlMzc1OTdmYjYwNDgyOTc=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjk2MjBmYjhiMDM4NjE2MGUzNjRlMzhkNjNhZDNmZWRlNGExODJjZTM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjk3OGYwNTJiNjNhYTIwOWVkODEwN2RhZDcxYzU5YTQ0NjQzZTc0YmE=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjk4Zjc2YzRmYTkzNGEzZTA4ZGM0YWJiOGMxOTY5N2M3ZWQxZGE4MWM=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjkzNmNkMjJmZTE1OWJmZDdmOGJlZDUzOTc4M2Y1MmM3NjhmMjBhOWY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjlhNWI0ODllMWJiY2MzMDZjZTRjNjM2MmFhNWFhZGZmNjBlNmEyN2Y=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjlhODY2NDI0Zjg0YjQ2OTc4M2RmZTU1OWE1MTBmZmM5M2UwMGQ2NGI=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjlhYTBlY2Q2ZjUzN2MwZjNkNWY2ZjIwMGM3YzU0NDhkZGMyOGM5ZGQ=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjlkMGNhY2YyOWVlNWY2NjY4NDI2YzBkZDljY2ExMmFkN2FmOTA2YWE=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjlkODU2MGY3YTE3MGNjMmMwOTM3YmE3OTgwZGJjYjQ2NmFkMzE0MGY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjllZTZkMWIzYjBkN2IwNmMzYWJlYjdiNDk2ZTgzMDY4M2M1NGY2ZDQ=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI=\u0000":[1.6102710068909003,0.9208832339461835,0.8612373429575801,0.6128586600720601,0.3249266965498496,0.128613443895976,0.11032454794580447,0.014463671332875844,0.008120174520911103],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE2ODUzYTgzOWIxMTAxYjA3N2UzYjgwYzMxMDZkYTAxYmUyODA3ZWE=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg=\u0000":[0,2.116881201288072,2.4423250135340333,1.736430290022957,0.9190134048315898,0.3641370313294574,0.3111867560757542,0.018541745746287572,0.012437787869719023],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE5OTlkNmJkMzVkZjE5OGJhYjYyNTI0MDQzMjVkN2E5NDQ5ODM0MTA=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmEwZmI5YjgyMmJhYWI5ZTBmY2U4NDMzYmUzZGU3ZDQyM2UxYjRkZDY=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmEyNTQ3ZWI3ZDE4MzVlMDUwYTg5NzE3MmI1NjNjY2I2OWI3Njk3MTE=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmEyZmQ3ZTA3Njc5NWM2MmEwNzUwMWQ1ZmI3MWMwMzk5OWNjNGIxNDU=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmEzN2E0ODI1NmQ5OWE2M2ZjZjBhNjc4ZWJiYjM0Y2NhMGZkOTVmMjM=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmFlNjU2YTFhOTllOWE4Y2MyMjdjMTg3MTU0MTIzNTcxZDlkMTY4NzI=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI0Mzk0MjEzMzAwZmY0ZDcyZWJhY2E3YzYzY2Y5MTlkZjMwNmVhZDM=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI1YWQ1ZWVhNDAxYjRmNDE1YjlkYTQ0NjE4N2I4OTNhN2NlZWUxYjU=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI1ZGYzYzhjZDg1Y2JlNDM2MDZmMjA1MmYwMDYzMWRiZmNjYTQyZDk=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI2Mzg4ZGI1ZWI2YTZmZWQ1NmViYTY2MWRiMmI3NjFjY2RkZmQ2ZmM=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI2NzA1NzRiZDJiY2YxZTBhNzFjMzZiOTQ0N2IwZDVmZmUyMmI5YWE=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI4MzE5ZDM2MTZjN2Q1ZTZjMmFmODA4N2VhNjNlOWZhYjFhNzNjMDI=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI4NDJlZDNlYWY2ODc1MTNhMGQ5MGVhZmRmYjBhOWVjNmZjNTg4MmU=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI4NWMwYjVhYjk4MzU3YzZkYzNhZjY5Mjk3ZTZhNzk1ODUxYzg5ZjQ=\u0000":[3.3185062856714524,1.8597637883309783,1.7376022857399527,1.2340581664378825,0.6517338789611795,0.2560137372172281,0.2163863089730297,0.02759743482136026,0.014761723680480404],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc=\u0000":[0,0,0,0,0,4.546330642677111,3.8411228490461045,0.2238542667950456,0.14401586666680344],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI5MzA5ZTRkNDQyODlhZjgzNDFmNDMxMDNiN2JlMTk1ZGY1OTk4YjA=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmIwMzhmMWNhOWY5YjZhNWE1NDkzNWMxYTczMGQyZTMyZjgyMjBjZTc=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmIxZTI0MTg1YzU2N2M0ZjlhNjA5NTk1NTllNmZmMWFjN2RiYjYyNzk=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM=\u0000":[0,0,0,0,0,0,0,5.663594645706481,2.847352395172959],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmIzZjY2N2M3NDZkNTRmZDFlN2VmNDFkNGU5MTE4NmZmNzA1Y2IwMWE=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJhMDhmMjFmMzhmZWYyNWU2NWEwMDZlNGFmMDA1OTFmNjIzY2JhODg=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJhNjkzZjVmMTE2Y2YxOWQ5YThiZjFiZjU1YTRlYzhjNmMxOTI5Yjg=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU=\u0000":[2.0396480399085593,1.1664193779515193,1.0908395320411934,0.7762006461119432,0.41148155017990795,0.1628374851208587,0.13961947661371374,0.018288022825145564,0.010249239621024217],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJiYzU0ZTQ5NDcxOTBkYThjMzdkNzY3ZTAwNDMzOWI2MmZiMzRhYWM=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg=\u0000":[2.0396480399085593,1.1664193779515193,1.0908395320411934,0.7762006461119432,0.41148155017990795,0.1628374851208587,0.13961947661371374,0.018288022825145564,0.010249239621024217],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJkZDFkOTUwOTVmYzk5MTg2NzU0NTAyYzk2YzFlY2JmZjIxNmZiMTQ=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJmZDMyMWE1YzM4NGRjN2ZhYjk5MDYyYmNjMzQ5MTcwNTMwM2ExNzY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM0NjFiYjQwMzY2YmU2MTI0Y2M4ZTA5YWYyNTc0MWM1ZTY1YjFhNmE=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM0YWUyYjk1ZWRkMjIzYTJiMzI2OWY0OTEzYzVhMjM3ZTc1NTcxOTQ=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM1MTlhMDkxNmYyMzg2NmM5OWMwYzc2YmFkMzNkZWMwOWM0YTEwNTI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM1ZWVhYzk0ODU2OWEwNjYyMjc0MGQwYjkzNDBjNjIyZGRiNDY5ZDM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM2MWJjNzkxODMzNzRlN2UzN2E4NDU2ZmY0N2Y2NjJhMmJjMjFiYWY=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM3YWNlZjhhNTY2NGQzZGQ1NzA1OWU4Y2M0NDdjNGYxZGJlMjY5ZGI=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ=\u0000":[0,2.116881201288072,2.4423250135340333,1.736430290022957,0.9190134048315898,0.3641370313294574,0.3111867560757542,0.018541745746287572,0.012437787869719023],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE=\u0000":[0,1.6703550785070889,1.9261530699472535,1.368030352245376,0.7225483883281283,0.28512867038482137,0.2417278090876061,0.014183304782849153,0.009246542386083287],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmMzNzgxOGRjNTRkYjMwMmMxYmIyYmZlOTkzMTIwODRjYjY0NTIyNjM=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmNjNGU0ZmY5NGIyZmU3OGQ4NzI3OTYzYjQyYmMxYzMzYmZkMmU5MzI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmNmMzU5ZjU2YTllN2Q5ZTM4MGE3MjlmZTY0ZjBmZDllMDY4NTNjMjE=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmNmNDE2MzYzNzlhY2Q1ZmI5ZTI3YWY2MjcyN2ZkZjY0YTExMWQ5NTk=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQ0NTU1NTU0ZDM0N2IyMzg1YWM5NmE1MzBmNTYyODQ5MWMyYzcyNGM=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQ1OTNiMTI2YWY1Y2NkZTMyZmU2MTBmYmMzOTlmOTIzM2M0ZmNkY2Y=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQ3ZTU3NjNjMzc1ODIwNjdkOTMwZTUzNzE4MjczZWVmNjc5OTdkYjc=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQ4MDM0YzFhOTk3YTZmMzc2MmViNjRhYmVmZDM5ODNjYTVjMTdiMjc=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQ5YjQwZTA3MWMyZjIxNmI4ZmI0Y2ViY2U3ODhlYzFiZjg5MmFjN2M=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQyMTBkNmYzODc4NjBiNDczNjE5MzYyNDEyNWVjNWUxYjhmNWM4OGE=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE=\u0000":[1.6102710068909003,0.9208832339461835,0.8612373429575801,0.6128586600720601,0.3249266965498496,0.128613443895976,0.11032454794580447,0.014463671332875844,0.008120174520911103],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmRmMzkwNTNmMzdiZjkzODIzY2Q0MzY0YjgxOWNhMTI4OWU0NDgxYjE=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmRmOWY3NDIzZjBlMThhNTc4MzUzMjRiNDU5ZmUyNDNkM2YzZTU1YWI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmU2M2VjNzBjM2I3NWRlNTM5ZTg2ZmFmNzdjOWU0NGY4Mzc1M2NiMWY=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmUwMGQyZmJjODk1OWExYThkZDY5MDc2MjdjMGYxMzczMWRkNWI3ZTQ=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY=\u0000":[0,1.6712454596093442,1.9282054434804017,1.370942604717926,0.725618154210995,0.28754113942129883,0.2457838059920235,0.014651325288990191,0.00983683056802747],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI=\u0000":[0,0,3.860267902961044,2.744099169349332,1.4501803144857028,0.5717812014564742,0.48573954279025144,0.07328940493044675,0.03260184300972679],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmViZmNhMjMwOTg3NzI2ZmI2ZDBjNzRjZGJhMWU3MzQ2YjVkMDgzNDU=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmVjNTQzNmI2OGVjMzZjZWE0MWY5MjNhZTJkOTU4NDFiN2RiZTY3OGE=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmVjYTFjOGU0ZmI5ODk3Zjg2ZTcxOTJmMTc0MWQwMDUwOTcwN2E0MmQ=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI=\u0000":[0,0,0,0,0,4.546330642677111,3.8411228490461045,0.2238542667950456,0.14401586666680344],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmVmMWE0ZTFkM2JmNzBmOWRhY2NlYmRmMzAyOGVhOGY0NzZjMjY4OTk=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY2YTg4YjY5NzI4ZmEyY2JjOTMwNGE5ZDNhNjE5M2FmYTlhY2ExN2M=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY3ODY2MGNlMDkxMzJkNjEyN2FiOTYwYTBmZGI5ZjE5ZjJiNzY4OTM=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY3OTI5NGIxNGU5MDBjYTkyN2IzZTllNWNmNTE5NzI4MTRjZDJjNTA=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY3ZWNkYzY2MTdjZTc3NTc0Njc2NjU0YTg0ZjU4MzEzYWQ5Zjg0YTg=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY4MTllYzUyMGU3NTRjNGFkYjQ2ZDEzZDAxMjZmYTQ4ZjAzYjBkYWM=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY5NmJjM2Y2NjEwNmVkNDM0MWQ2NzRiNWEzN2ExZmNlODAzNWM5MjI=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmYxYjFhMzQ4NTE0YThkODg3NTBjMjc3NGEzNzlhMDBiODVlYTA4MTA=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmYzZDA3NmY2Nzc5N2Y2YzM0OTFlMDQ2YTVkY2RjZTAzNzI4OTBkZTU=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmZlMzNkYWI3NGEwNWY0M2QxZTI0MDQ0ZGM0NDEzZmYwZTcyYWFkNTA=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE=\u0000":[0,0,0,0,0,0,0,0,5.1759845351905405],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAyZjRkMzYyM2FlNGU4OWZhNjIzMjQ3N2Q5N2ZlMzJiMjdhYWU3YzU=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAzNjA0YTdkOGY5YTZmNDg4Zjc5OTAzMDllNzAwNjZhMTI2MDQ4M2Q=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAzODhmYjAyMTlhNzQ2MGU2NzI2YjM0ODM1YzY3MDk4NmJlNTQwNmM=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjBiMzUxNDEyY2ZhOTJjOGVkYWJlYTE0NDlkYTE2YTdhMjEyOGM4MWY=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjBlOWRiZDg0MDZiMjU2ZjZiNWU1NTNkNjc2OTY4M2E1NTkwOWFiODQ=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjE2MzA5ZGE2Yzc4NmVmZTlkYzFmNzQ1YzYxYWQ0ZjJjMmFkNjFkNzY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI=\u0000":[0,0,0,0,0,0,0,3.2150539658920727,1.5359936999133688],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjE5MWU3M2U0MjlhYjE5M2U1OTE4OWY0NGIzNjNkNjk2MTNlZTAzMTU=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjExYTQ1ZWIxODhhNzU2ZTMxZjJlY2UwYWZjZjEwYWZiNWUzMDExMmY=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA=\u0000":[0,0,0,0,0,0,0,0,1.7244606692205466],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjI3NWQxNjNlZmRkODEyY2RjZDZhZTJmNWE4YWZmMWJhYjNiZWQwZTc=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjI5ZDlhOGVmMGQ3MzhkOGIxYmRhZTg3M2M4OTJhZjQxODU4Y2RhMGE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjJkMjkwYjIyODhhMTRkNDk0ZjBmYzE4YmZhYzg4MmVmNmM2MTdlNmE=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjM2ZWQ5NWRkZjgzNDliYTNkNTU3YmZiYmVmMDY2YjI1NTliNDMyYTM=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNTI5MjM5NDA5NjllMDU5NGM5NjkzZDI3ZTgwYmY4MWU0OWJkZmI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNzE2Y2EzOWEzMDVlNWQ4YTliMmE1YWE0NjYwMzk0NjZkMDVhMzg=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNlMzc2MDAwN2M5ZDBhOTQ3MWY1ZjBkNDI5YWM0YzMwYjFmYjU0ZjY=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzcyMzUzZjhkOTUwMjI2ZDkwOWIxMjc3OGNiZWQ0ZGYzZWQ4NjY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZjI1ZWE0ZWI2NDY0MjdjMDZlNThiN2U0Y2UyYzRjZDM4NWMzMjk=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQwMDM2YTM4NmIwN2M0MWI4OWU1OTQ3MzZkYWRiNjEzNGNmMTgyZGU=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjRhNjIzZmJjMzczNWM5YTMyZDEwMTk5ODgwMjE0Y2M3OWNhYTQwMDQ=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM=\u0000":[0,0,0,0,0,0,0,5.26408600472155,2.6034730919133944],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjRlYzZiZGM2YTEyMGUxMjMwNTJlYmY2OTBkZGY2ZjMyYjljMzU3MjI=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjU1NGE4MmJjMDVjYjcxM2U5MmU4YjM1MjNiNTIxMDc4ZGFmODI5ZjA=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjU2ZTE0NTBhYmQyOTQ1N2QzYWVmYmRhZWYzZTM4NTYyNzI3Yjc2Mjg=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjUwMjNlZWU3MWM5YzNmMmYxNmRlMWIyMmU5ZjM3ZmRhMjZjMmYwMjM=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjUzYjZmMWI5ODBiNzk3ZjkyZDU5ZmM0OTEyYjJmZTZlOTk5Zjc3NGE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjUzZDliNjI4NjJkMGU4ZWY1OTdkYmZmY2JkMGRhOGJjZDEyMTAwY2M=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjVhZTZkYjc0ZWM2MzgyMjJjYjYwOTU3YzMxMDVlMTVkZTdmODQ0NTc=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjVkZDA1ZTM2MDVlOTk0MGY2NWYyMDU5ZThjNDI4NjA3N2E2NDM5ZGI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjVmNjg5MDEwZjZlMGE0Mzg1MTNiN2U0NGVmMzdhZTEyZDU5ZGRmOTE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjVmYzk5ZjA5MjZhMzgxNDBiYzQxYWI1MzIyZTI4ZTQzZjViNTA5Njk=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNDRkYTc3ZDc3Y2Q1ZjBiZjc4MmZkNDdmYWY3ODEzY2I5YTAwZDc=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNGJhODc2MWNkZGRjODRiZmE2NjQ4NWZlMzY3NDk1ZTVjOGE2NWE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjYyZDQ3MjQyMzMyZjRlMWQ4NmY3ZDdhZTQ2MGY2ZGM5OTgzNDRhYTI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjZmMWEzOTY4ZGFhMWUzZDJiZDYwN2Y4MWE1OTlhYzVlYmY3M2Y3MTc=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc=\u0000":[0,0,0,0,0,0,0,0,4.922674058788298],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjZmYjU4ZDJiY2IxMGVmYTFhMTgzNmIwYmYzMzU3YWU2YmMzMzk1NWI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjcxM2FjYmQ0NTkzYTdhMTBiMDU0NGFhYWI3ZmM0YWMwNWE2NmY5YWU=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjczNTA1YzM0YTFiNDZhM2RmY2FjYTRkOWMzYWExMTZmZGY1MWUwZGI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjczZGJmZWEwMGQyNjlmZjk1M2VlNTBjMDM0ZjFjNjkzOTc0M2E1ZGU=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdhOTkxOTYzYTVjOGZjOGRiYTRhYjZhMGMxZTM5NDIxZWVlYzQ1ZDY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI=\u0000":[0,0,0,0,0,0,0,0,4.013767091305213],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdlYTU5MTZhZDZmOWRlOTg0MWYyNzc5MDE1MDZhYjcyYTM5YmYxNTc=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ=\u0000":[0,0,0,0,0,0,0,5.26408600472155,2.6034730919133944],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhhNTg0ZTRiNGY5YzhhMTExMWJmMzgzZDNhN2E3MmNhM2Y4ZWU1Yjk=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY=\u0000":[0,0,0,0,0,0,0,5.144799614291322,2.5448195767201796],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhlMTNmMzlkMTM3MmI0MjJhOTE0ODU3ZjMyNGVlNjBhYmQyYzc5NWE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhlODBiOGZmNWJiYzgxMjNlNTdhYzcyOGZjOWVmY2QxY2QyZDAzOGI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojk4MmE4OWRmMmI1MjgyNTc4YTc1OTNlZWE0OTUxMWFlODAzZWUxMGI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ=\u0000":[0,0,0,0,0,0,0,2.295615472763364,1.0963253291402826],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEzNTZmZTM3YjNlZTIyNTZkNTI5YTYyNWE0MmQ4OTA5NjI4NzAwOTY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmFjZTNkODIxODMzYzAxNTdlOGUzZjc0YzA2OTUxZmU3OWNiYjQ5ZTc=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmFmM2ZjNDBiMGI0ZjAxMGY0MjM2MzkxYmMyNDViYWI1YzNmYzUzNDM=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmI1NWE3YTE5NmI4Zjg1ODE3ZTg1NDhiZjdiOWFmYmExMzQxMTMxZTI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU=\u0000":[0,0,0,0,0,0,0,0,1.7251499703816564],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmIyZWMwNjQ2YTc1MzM4MjhiMDAzYTdjYzUyNWFjMGVjNDhjNWQ5YTA=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY=\u0000":[0,0,0,0,0,0,0,0,5.511497782251014],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJhYjQ4OGUwNTMxYTgyNjc3NzgyOWU3MGM0Y2Y4ZjYyMDIwMmU4ODE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJiNGM4MDYwOGRiNTJjMDNhMzNiMDllZGJmOGZkYmZmYzY2NmM2NjQ=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJjYzBkMWUxOGY1NmMwZWUwOThjN2ExMzE2YWZhNTI1MmM1ZDMzOTI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMxOTFlNTdmNDQ2NjJiY2I3NTNlYzRjMDhhMjU1NDViMGQyNWUyODQ=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMyNjRjZmUxYmM5NmM3NTgwNzliZmZjZDcyOGY0OTdkMGQ3YzAxMTc=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMzNGJjOWM1NzNlYWNjMDA4Y2E5ODY1M2RkZDI2NjFmODIzZmY5YjI=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI=\u0000":[0,0,0,0,0,0,0,5.26408600472155,2.6034730919133944],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmRiYjRiYmI0YTQ4YmYzNmIzODkwY2IyMzAxMjMzN2MwYmZiZmM2Yzc=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU0ZGIxZTVjMDEzOTA1OTBhNTNlNDc0MjRiNmZjNjM4OWZiZWQ0NTk=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU4ZDI1NjZlMDIzYTdjZWZiMDRjNTE1N2IwZjg1NTY4ZmNiOWEzYzU=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVlODA1YzIzMGQ1OGI0MjBmMzliZWRkNmQ3ZGM1YzEwYzhmMTQ4NTY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVmZTJhMjEwMjQyYWRjZDUyYTI4OGQ1N2YzNzNiMDkxODdiODhjMTc=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmY0NTk3ZWFhNmIwNjgxZWJmYjdlMzI5OTFmYzI5NWY1MjQyN2QxOTk=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmY1YjZiNWI5YjhhYjQ5MzM0MjU5MTc5OTM2OWJhYjQ0NzNhZDRiZDU=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmYxNjUwNTgxNDk1YmQ1YmE5NTFlNmFjYTNhZGM2NWFhNDI3MWU3ZWM=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZjZTMzMzk5ZDA2OTY5OTUzODVkODg5NTk5NWNiMGZkYWFkNTY2MTU=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZmNzA4YzNiNzM1MmE5YjY1OWRmODEyMDM1MWU2ZjFlYWI1NjZhMmE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM=\u0000":[0,0,0,5.483817420032543,2.8957403858264588,1.1399349491723159,0.9653692999600377,0.14476657806897064,0.0636448534538503],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI=\u0000":[0,0,0,5.48605213828181,2.5731299696735737,1.101639740703152,0.7266310250764223,0.14524850684449833,0.07020714345876065],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ=\u0000":[0,0,0,0,5.79427949443976,2.276618820680594,1.925024561286029,0.2457151271109475,0.13164464399717493],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk=\u0000":[0,0,0,5.48605213828181,2.5731299696735737,1.101639740703152,0.7266310250764223,0.14524850684449833,0.07020714345876065],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk=\u0000":[0,0,0,5.48605213828181,2.5731299696735737,1.101639740703152,0.7266310250764223,0.14524850684449833,0.07020714345876065],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk=\u0000":[0,0,0,0,5.1421519705943854,2.199769683437474,1.448652202655756,0.28867003539016994,0.13867827031283206],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc=\u0000":[0,0,0,0,5.140097370083723,2.198013731702218,1.446344514119812,0.28775435561317675,0.13780610221617687],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM=\u0000":[0,0,0,0,5.79427949443976,2.276618820680594,1.925024561286029,0.2457151271109475,0.13164464399717493],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y=\u0000":[0,0,0,0,5.79427949443976,2.276618820680594,1.925024561286029,0.2457151271109475,0.13164464399717493],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE=\u0000":[0,0,0,0,5.1421519705943854,2.199769683437474,1.448652202655756,0.28867003539016994,0.13867827031283206],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA=\u0000":[0,0,0,5.48605213828181,2.5731299696735737,1.101639740703152,0.7266310250764223,0.14524850684449833,0.07020714345876065],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg=\u0000":[0,0,0,0,0,4.548842202819377,3.8430965430275115,0.5735991956765576,0.24985062278604594],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY=\u0000":[0,0,0,0,5.1421519705943854,2.199769683437474,1.448652202655756,0.28867003539016994,0.13867827031283206],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI=\u0000":[0,0,0,0,5.1421519705943854,2.199769683437474,1.448652202655756,0.28867003539016994,0.13867827031283206],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000012\u0000":[0,0,0,0,0,0,0,5.142136588918701,2.2618736345140533],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000014\u0000":[0,0,0,0,0,0,0,0,7.4936393928540515],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000015\u0000":[0,0,0,0,0,0,0,0,4.521337177047755],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000016\u0000":[0,0,0,0,0,0,0,0,6.305894444432794],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000017\u0000":[0,0,0,0,0,0,0,0,4.521337177047755],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000018\u0000":[0,0,0,0,0,0,0,0,8.941925726750414],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000019\u0000":[0,0,0,0,0,0,0,0,4.726805789054158],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00002\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000022\u0000":[0,0,0,0,0,0,0,0,7.06849391102386],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000023\u0000":[0,0,0,0,0,0,0,0,5.612006035421285],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000024\u0000":[0,0,0,0,0,0,0,0,4.521939760289411],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000025\u0000":[0,0,0,0,0,0,0,0,10.510391197607154],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000026\u0000":[0,0,0,0,0,0,0,0,5.03276635324986],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00003\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00004\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00005\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00006\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00008\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00009\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000TheSource\u00003\u0000":[0,0,0,0,0,0,0,7.426512889118051,4.5936627161945145],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000aracred-cli\u00001\u0000":[0,0,0,0,10.274818729533763,4.39139744020481,2.8871754327107175,6.853720552417883,3.315978404945738],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00001\u0000":[0,0,0,0,0,0,0,0,9.317612061676922],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00002\u0000":[0,0,0,0,0,0,0,0,9.605413192762372],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00003\u0000":[0,0,0,0,0,0,0,0,5.787736908500063],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00005\u0000":[0,0,0,0,0,0,0,0,11.043675495034279],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00006\u0000":[0,0,0,0,0,0,0,0,5.0223377016484845],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00007\u0000":[0,0,0,0,0,0,0,0,5.0223377016484845],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000comms\u00001\u0000":[0,0,0,0,0,0,0,0,6.474110591689349],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000leaderboard\u00001\u0000":[0,0,0,0,0,0,0,0,4.698991025621192],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000leaderboard\u00002\u0000":[0,0,0,0,0,0,0,0,4.698991025621192],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000":[0,0,0,0,0,0,0,0,10.274391570313528],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00002\u0000":[0,0,0,0,0,0,0,0,4.722001503484268],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00003\u0000":[0,0,0,0,0,0,0,0,4.722001503484268],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00004\u0000":[0,0,0,0,0,0,0,0,6.320120498015921],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00005\u0000":[0,0,0,0,0,0,0,0,3.437371706107839],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000":[0,0,0,0,0,0,0,0,12.64090690431376],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000website\u000010\u0000":[0,0,0,0,0,0,0,0,7.048986561955099],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000website\u000011\u0000":[0,0,0,0,0,0,0,0,7.048986561955099],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000website\u00002\u0000":[0,0,0,0,0,0,0,7.510917927183978,3.525902091114967],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000website\u00007\u0000":[0,0,0,0,0,0,0,0,7.048986561955099],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u00001\u0000":[0,0,0,0,0,0,0,18.55733036805031,9.424012770650199],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000010\u0000":[0,0,0,0,0,0,0,17.807405178149423,9.053092701835418],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000011\u0000":[0,0,0,0,0,0,0,18.55733036805031,9.424012770650199],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000013\u0000":[0,0,0,0,0,0,0,0,20.515703816815723],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000020\u0000":[0,0,0,0,0,0,0,0,20.18717363771696],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000021\u0000":[0,0,0,0,0,0,0,0,30.84308487541431],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000027\u0000":[0,0,0,0,0,0,0,0,17.737672803789856],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u00007\u0000":[0,0,0,0,0,0,0,18.55733036805031,9.424012770650199],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000TheSource\u00001\u0000":[4.07561068964001,2.328678015563233,2.174024371281884,1.541445562953552,0.8113596680867581,0.3166941888342866,0.2641461682874746,21.061774401124055,10.952323911848554],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000TheSource\u00002\u0000":[0,0,0,0,0,0,0,21.05459243945009,10.948663944222684],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000bot\u00004\u0000":[0,0,0,0,0,0,0,0,18.924130543007717],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000bot\u00008\u0000":[0,0,0,0,0,0,0,0,30.102194317696984],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000bot\u00009\u0000":[0,0,0,0,0,0,0,0,18.61703284152316],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00001\u0000":[0,0,0,0,0,0,0,21.134096498201384,10.63396333124807],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u000012\u0000":[0,0,0,0,0,0,0,0,18.180386552524173],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u000013\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u000014\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u000015\u0000":[0,0,0,0,0,0,0,0,24.818908709761008],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u000016\u0000":[0,0,0,0,0,0,0,0,25.227161271460517],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00003\u0000":[0,0,0,0,0,0,0,21.134096498201384,10.63396333124807],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00004\u0000":[0,0,0,0,0,0,0,21.134096498201384,10.63396333124807],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00005\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00006\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00008\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00009\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000AraCred\u0000":[0,0,0,0,0,0,0,42.80923385556413,66.53069204934917],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000TheSource\u0000":[0,0,0,0,0,0,0,19.287411153902504,10.004244074862278],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000aracred-cli\u0000":[0,0,0,0,0,0,0,5.583814035018466,2.8546395483044664],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000bot\u0000":[0,0,0,0,0,0,0,0,36.501516350557715],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000comms\u0000":[0,0,0,0,0,0,0,0,5.629188861733246],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000governance\u0000":[0,0,0,0,0,0,0,0,15.113834411600203],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000leaderboard\u0000":[0,0,0,0,0,0,0,0,6.791053943598668],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000onboarding\u0000":[0,0,0,0,0,0,0,0,14.433431885906868],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000website\u0000":[0,0,0,0,0,0,0,26.130264926326586,88.57628467021512],"N\u0000sourcecred\u0000github\u0000REVIEW\u0000aracred\u0000AraCred\u000013\u0000391815975\u0000":[0,0,0,0,0,0,0,0,5.951960238646975],"N\u0000sourcecred\u0000github\u0000REVIEW\u0000aracred\u0000bot\u00008\u0000395001410\u0000":[0,0,0,0,0,0,0,0,12.611952703195215],"N\u0000sourcecred\u0000github\u0000REVIEW\u0000aracred\u0000bot\u00008\u0000395035075\u0000":[0,0,0,0,0,0,0,0,5.551320212388722],"N\u0000sourcecred\u0000github\u0000REVIEW\u0000aracred\u0000website\u000015\u0000393444362\u0000":[0,0,0,0,0,0,0,0,6.251178923652743],"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000AlexMasmej\u0000":[0,1.653667201245717,1.545563446100058,1.098390338828002,0.5808359025031802,0.2287385304694004,0.1942496493692759,0.02498348625676052,0.013542513112360691],"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000Beanow\u0000":[13,8.89897397172313,8.308451706586302,5.892315755483504,3.1030414623205966,1.212051804274113,1.013138419549002,0.12645067937115612,0.06492539355414434],"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000Evalir\u0000":[0,0,0,0,0,0,0,0,109.81062690732509],"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000c0mput3rxz\u0000":[0,0,3.090060974163104,2.1953377995926893,1.1601692086390345,0.4563287230023399,0.3866645056482243,0.04954841117403204,0.02672733814453777],"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000vntrp\u0000":[0,0,0,0,0,0,0,0,10.101950202443525],"N\u0000sourcecred\u0000identity\u00000xGabi\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000Aaron\u0000":[0,0,0,17.544840736841515,26.71714492323857,43.04002327948001,40.40654477203681,279.68025057762435,172.33666648628457],"N\u0000sourcecred\u0000identity\u0000burrrata\u0000":[0,0,3.090060974163104,6.580578397689634,3.4748858451540428,5.003359913530426,4.2267921858015844,135.52889542824082,268.8386746444448],"N\u0000sourcecred\u0000identity\u0000crisorg\u0000":[0,0,0,0,0,0,0,0,27.40549220724357],"N\u0000sourcecred\u0000identity\u0000cslarson\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000dandelion\u0000":[0,0,0,0,0,0,0,0,17.127291832212162],"N\u0000sourcecred\u0000identity\u0000evalir\u0000":[0,0,0,0,0,0,0,0,15.910640631810226],"N\u0000sourcecred\u0000identity\u0000fabriziovigevani\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000fioreb\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000hammadj\u0000":[0,6.947358827031153,30.758455441961484,21.832569371125324,11.517188821203975,19.066761610949243,16.09119832426911,2.108496762135427,2.447972300036036],"N\u0000sourcecred\u0000identity\u0000li\u0000":[0,0,0,0,0,0,0,0,21.768584239984524],"N\u0000sourcecred\u0000identity\u0000lkngtn\u0000":[0,0,0,0,0,0,0,0,8.78988729656361],"N\u0000sourcecred\u0000identity\u0000mzargham\u0000":[0,0,5.95740745702595,4.230967600439331,2.2344495209947524,0.8776832337615872,0.7418179964793332,0.09673881688338047,20.630153754837256],"N\u0000sourcecred\u0000identity\u0000onbjerg\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000rperez\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000sembrestels\u0000":[0,0,0,0,13.899784315945858,5.458802904532879,4.611469146846664,0.5875314900924503,0.3136288046715344],"N\u0000sourcecred\u0000identity\u0000willjgriff\u0000":[0,0,0,0,0,0,0,0,0]},"intervalsJSON":[{"endTimeMs":1582416000000,"startTimeMs":1581811200000},{"endTimeMs":1583020800000,"startTimeMs":1582416000000},{"endTimeMs":1583625600000,"startTimeMs":1583020800000},{"endTimeMs":1584230400000,"startTimeMs":1583625600000},{"endTimeMs":1584835200000,"startTimeMs":1584230400000},{"endTimeMs":1585440000000,"startTimeMs":1584835200000},{"endTimeMs":1586044800000,"startTimeMs":1585440000000},{"endTimeMs":1586649600000,"startTimeMs":1586044800000},{"endTimeMs":1587254400000,"startTimeMs":1586649600000}],"paramsJSON":{"alpha":0.2,"intervalDecay":0.5},"pluginsJSON":[{"edgePrefix":"E\u0000sourcecred\u0000github\u0000","edgeTypes":[{"backwardName":"is authored by","defaultWeight":{"backwards":1,"forwards":0.5},"description":"Connects a GitHub account to a post that they authored.\n\nExamples of posts include issues, pull requests, and comments.\n","forwardName":"authors","prefix":"E\u0000sourcecred\u0000github\u0000AUTHORS\u0000"},{"backwardName":"has child","defaultWeight":{"backwards":0.25,"forwards":1},"description":"Connects a GitHub entity to its child entities.\n\nFor example, a Repository has Issues and Pull Requests as children, and a\nPull Request has comments and reviews as children.\n","forwardName":"has parent","prefix":"E\u0000sourcecred\u0000github\u0000HAS_PARENT\u0000"},{"backwardName":"is merged by","defaultWeight":{"backwards":1,"forwards":0.5},"description":"Connects a GitHub pull request to the Git commit that it merges.\n","forwardName":"merges","prefix":"E\u0000sourcecred\u0000github\u0000MERGED_AS\u0000"},{"backwardName":"is referenced by","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects a GitHub post to an entity that it references.\n\nFor example, if you write a GitHub issue comment that says \"thanks\n@username for pull #1337\", it will create references edges to both the user\n@username, and to pull #1337 in the same repository.\n","forwardName":"references","prefix":"E\u0000sourcecred\u0000github\u0000REFERENCES\u0000"},{"backwardName":"got 👍 from","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects users to posts to which they gave a 👍 reaction.\n","forwardName":"reacted 👍 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000THUMBS_UP\u0000"},{"backwardName":"got ❤️ from","defaultWeight":{"backwards":0,"forwards":2},"description":"Connects users to posts to which they gave a ❤️ reaction.\n","forwardName":"reacted ❤️ to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000HEART\u0000"},{"backwardName":"got 🎉 from","defaultWeight":{"backwards":0,"forwards":4},"description":"Connects users to posts to which they gave a 🎉 reaction.\n","forwardName":"reacted 🎉 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000HOORAY\u0000"},{"backwardName":"got 🚀 from","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects users to posts to which they gave a 🚀 reaction.\n","forwardName":"reacted 🚀 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000ROCKET\u0000"},{"backwardName":"merged on GitHub as","defaultWeight":{"backwards":1,"forwards":1},"description":"Connects a commit on GitHub to the corresponding raw Git commit.\n","forwardName":"corresponds to Git commit","prefix":"E\u0000sourcecred\u0000github\u0000CORRESPONDS_TO_COMMIT_TYPE\u0000"}],"name":"GitHub","nodePrefix":"N\u0000sourcecred\u0000github\u0000","nodeTypes":[{"defaultWeight":4,"description":"NodeType for a GitHub repository","name":"Repository","pluralName":"Repositories","prefix":"N\u0000sourcecred\u0000github\u0000REPO\u0000"},{"defaultWeight":2,"description":"NodeType for a GitHub issue","name":"Issue","pluralName":"Issues","prefix":"N\u0000sourcecred\u0000github\u0000ISSUE\u0000"},{"defaultWeight":4,"description":"NodeType for a GitHub pull request","name":"Pull request","pluralName":"Pull requests","prefix":"N\u0000sourcecred\u0000github\u0000PULL\u0000"},{"defaultWeight":1,"description":"NodeType for a GitHub code review","name":"Pull request review","pluralName":"Pull request reviews","prefix":"N\u0000sourcecred\u0000github\u0000REVIEW\u0000"},{"defaultWeight":1,"description":"NodeType for a GitHub comment","name":"Comment","pluralName":"Comments","prefix":"N\u0000sourcecred\u0000github\u0000COMMENT\u0000"},{"defaultWeight":1,"description":"Represents a particular Git commit on GitHub, i.e. scoped to a particular repository","name":"Commit","pluralName":"Commits","prefix":"N\u0000sourcecred\u0000github\u0000COMMIT\u0000"},{"defaultWeight":0,"description":"NodeType for a GitHub user","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000"},{"defaultWeight":0,"description":"NodeType for a GitHub bot account","name":"Bot","pluralName":"Bots","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000BOT\u0000"}],"userTypes":[{"defaultWeight":0,"description":"NodeType for a GitHub user","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000"}]},{"edgePrefix":"E\u0000sourcecred\u0000discord\u0000","edgeTypes":[{"backwardName":"message is authored by","defaultWeight":{"backwards":1,"forwards":0.25},"description":"Connects an author to a message they've created.","forwardName":"authors message","prefix":"E\u0000sourcecred\u0000discord\u0000AUTHORS\u0000MESSAGE\u0000"},{"backwardName":"reaction added by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a member to a reaction that they added.","forwardName":"adds reaction","prefix":"E\u0000sourcecred\u0000discord\u0000ADDS_REACTION\u0000"},{"backwardName":"is reacted to by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a reaction to a message that it reacts to.","forwardName":"reacts to","prefix":"E\u0000sourcecred\u0000discord\u0000REACTS_TO\u0000"},{"backwardName":"is mentioned by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a message to the member being mentioned.","forwardName":"mentions","prefix":"E\u0000sourcecred\u0000discord\u0000MENTIONS\u0000"}],"name":"Discord","nodePrefix":"N\u0000sourcecred\u0000discord\u0000","nodeTypes":[{"defaultWeight":0,"description":"A member of the Discord server","name":"Member","pluralName":"Members","prefix":"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000"},{"defaultWeight":0,"description":"A Discord message, posted in a particular channel","name":"Message","pluralName":"Messages","prefix":"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000"},{"defaultWeight":1,"description":"A reaction by some user, directed at some message","name":"Reaction","pluralName":"Reactions","prefix":"N\u0000sourcecred\u0000discord\u0000REACTION\u0000"}],"userTypes":[{"defaultWeight":0,"description":"A member of the Discord server","name":"Member","pluralName":"Members","prefix":"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000"}]},{"edgePrefix":"E\u0000sourcecred\u0000identity\u0000","edgeTypes":[],"name":"Identity","nodePrefix":"N\u0000sourcecred\u0000identity\u0000","nodeTypes":[{"defaultWeight":0,"description":"A combined user identity as specified to SourceCred","name":"Identity","pluralName":"Identities","prefix":"N\u0000sourcecred\u0000identity\u0000"}],"userTypes":[{"defaultWeight":0,"description":"A combined user identity as specified to SourceCred","name":"Identity","pluralName":"Identities","prefix":"N\u0000sourcecred\u0000identity\u0000"}]}],"weightedGraphJSON":[{"type":"sourcecred/weightedGraph","version":"0.1.0"},{"graphJSON":[{"type":"sourcecred/graph","version":"0.8.0"},{"edges":[{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","👍","695344752031432766","696454968831508630"],"dstIndex":176,"srcIndex":1409,"timestampMs":1586118204077},{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","👍","695344752031432766","696455224532926464"],"dstIndex":177,"srcIndex":1409,"timestampMs":1586118265041},{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","🔥","696400331260821586","698659683526901810"],"dstIndex":188,"srcIndex":1409,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","695344752031432766","699021694240686190"],"dstIndex":178,"srcIndex":1412,"timestampMs":1586730159102},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","695344752031432766","699025335148216410"],"dstIndex":179,"srcIndex":1412,"timestampMs":1586731027162},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","698942081858666527","699822779670724650"],"dstIndex":205,"srcIndex":1412,"timestampMs":1586921152752},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","🔥","695344752031432766","698969730580742174"],"dstIndex":185,"srcIndex":1412,"timestampMs":1586717770000},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","🔥","696400331260821586","698659683526901810"],"dstIndex":189,"srcIndex":1412,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","291388682710024192","🔥","696400331260821586","698659683526901810"],"dstIndex":190,"srcIndex":4,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","291388682710024192","🔥","696400331260821586","699287660589613148"],"dstIndex":191,"srcIndex":4,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","💯","700023168995295233","700040917926543422"],"dstIndex":207,"srcIndex":1406,"timestampMs":1586973160965},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","695344752031432766","698973708316049488"],"dstIndex":186,"srcIndex":1406,"timestampMs":1586718718366},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","696400331260821586","699287660589613148"],"dstIndex":192,"srcIndex":1406,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","696420039141752863","699560532046250034"],"dstIndex":201,"srcIndex":1406,"timestampMs":1586858628046},{"address":["sourcecred","discord","ADDS_REACTION","user","363774203960360961","🔥","700023168995295233","700039441799970969"],"dstIndex":209,"srcIndex":1411,"timestampMs":1586972809029},{"address":["sourcecred","discord","ADDS_REACTION","user","440281764204642314","🔥","696400331260821586","699287660589613148"],"dstIndex":193,"srcIndex":7,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","537858848912834561","👍","696420197644632116","699284090607763506"],"dstIndex":204,"srcIndex":10,"timestampMs":1586792719271},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","❤️","695344752031432766","695669843034243134"],"dstIndex":175,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","👍","695344752031432766","695669843034243134"],"dstIndex":180,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","💯","695344752031432766","696730540039995493"],"dstIndex":183,"srcIndex":1401,"timestampMs":1586183905373},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","695344752031432766","698921390845198426"],"dstIndex":187,"srcIndex":1401,"timestampMs":1586706244909},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696400331260821586","698659683526901810"],"dstIndex":194,"srcIndex":1401,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696400331260821586","699287660589613148"],"dstIndex":195,"srcIndex":1401,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696420039141752863","699275497984622760"],"dstIndex":202,"srcIndex":1401,"timestampMs":1586790670630},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696420039141752863","700064920104075394"],"dstIndex":203,"srcIndex":1401,"timestampMs":1586978883530},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","695344752031432766","699025335148216410"],"dstIndex":181,"srcIndex":1402,"timestampMs":1586731027162},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","695344752031432766","699326575627206778"],"dstIndex":182,"srcIndex":1402,"timestampMs":1586802848489},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","696427343220047872"],"dstIndex":197,"srcIndex":1402,"timestampMs":1586111617618},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","696441890048049232"],"dstIndex":198,"srcIndex":1402,"timestampMs":1586115085852},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","699123164340551691"],"dstIndex":199,"srcIndex":1402,"timestampMs":1586754351459},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","700087985634541678"],"dstIndex":200,"srcIndex":1402,"timestampMs":1586984382781},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","700023168995295233","700040376085381152"],"dstIndex":206,"srcIndex":1402,"timestampMs":1586973031780},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","💯","695344752031432766","698965418370400296"],"dstIndex":184,"srcIndex":1402,"timestampMs":1586716741889},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","💯","700023168995295233","700040917926543422"],"dstIndex":208,"srcIndex":1402,"timestampMs":1586973160965},{"address":["sourcecred","discord","ADDS_REACTION","user","683892894767251489","🔥","696400331260821586","698659683526901810"],"dstIndex":196,"srcIndex":13,"timestampMs":1586643849022},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700038868707180644"],"dstIndex":123,"srcIndex":0,"timestampMs":1586972672393},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700039441799970969"],"dstIndex":124,"srcIndex":0,"timestampMs":1586972809029},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044206176993470"],"dstIndex":128,"srcIndex":0,"timestampMs":1586973944945},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044421760286721"],"dstIndex":129,"srcIndex":0,"timestampMs":1586973996344},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044496049799228"],"dstIndex":130,"srcIndex":0,"timestampMs":1586974014056},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044548411490335"],"dstIndex":131,"srcIndex":0,"timestampMs":1586974026540},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044635619328131"],"dstIndex":132,"srcIndex":0,"timestampMs":1586974047332},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044689285316738"],"dstIndex":133,"srcIndex":0,"timestampMs":1586974060127},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049028251123832"],"dstIndex":134,"srcIndex":0,"timestampMs":1586975094617},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049257490808933"],"dstIndex":135,"srcIndex":0,"timestampMs":1586975149272},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049378643017889"],"dstIndex":136,"srcIndex":0,"timestampMs":1586975178157},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700056792524128306"],"dstIndex":139,"srcIndex":0,"timestampMs":1586976945764},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059334679330946"],"dstIndex":140,"srcIndex":0,"timestampMs":1586977551861},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059353306234910"],"dstIndex":141,"srcIndex":0,"timestampMs":1586977556302},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059384751063091"],"dstIndex":142,"srcIndex":0,"timestampMs":1586977563799},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059438526103572"],"dstIndex":144,"srcIndex":0,"timestampMs":1586977576620},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059538023514154"],"dstIndex":145,"srcIndex":0,"timestampMs":1586977600342},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700061097583050871"],"dstIndex":146,"srcIndex":0,"timestampMs":1586977972170},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700062189503119381"],"dstIndex":148,"srcIndex":0,"timestampMs":1586978232504},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700062400774275204"],"dstIndex":149,"srcIndex":0,"timestampMs":1586978282875},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700063628711166054"],"dstIndex":150,"srcIndex":0,"timestampMs":1586978575638},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700064632144003103"],"dstIndex":152,"srcIndex":0,"timestampMs":1586978814875},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700118599003668510"],"dstIndex":153,"srcIndex":0,"timestampMs":1586991681577},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700335319349985310"],"dstIndex":154,"srcIndex":0,"timestampMs":1587043351734},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700335919315550299"],"dstIndex":155,"srcIndex":0,"timestampMs":1587043494777},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700365992571699350"],"dstIndex":156,"srcIndex":0,"timestampMs":1587050664800},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700366555233517630"],"dstIndex":157,"srcIndex":0,"timestampMs":1587050798949},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700367514638483537"],"dstIndex":158,"srcIndex":0,"timestampMs":1587051027689},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700369922630615040"],"dstIndex":159,"srcIndex":0,"timestampMs":1587051601799},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700370207419662458"],"dstIndex":160,"srcIndex":0,"timestampMs":1587051669698},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700370372230643763"],"dstIndex":161,"srcIndex":0,"timestampMs":1587051708992},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700371209241624656"],"dstIndex":163,"srcIndex":0,"timestampMs":1587051908551},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700371558480216124"],"dstIndex":164,"srcIndex":0,"timestampMs":1587051991816},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397237930295386"],"dstIndex":165,"srcIndex":0,"timestampMs":1587058114274},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397482362011769"],"dstIndex":167,"srcIndex":0,"timestampMs":1587058172551},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397866581229620"],"dstIndex":168,"srcIndex":0,"timestampMs":1587058264156},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397927478067221"],"dstIndex":169,"srcIndex":0,"timestampMs":1587058278675},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700398207733334077"],"dstIndex":171,"srcIndex":0,"timestampMs":1587058345493},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700398301727555604"],"dstIndex":173,"srcIndex":0,"timestampMs":1587058367903},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","695344752031432766","698673271729553469"],"dstIndex":24,"srcIndex":1409,"timestampMs":1586647088702},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","696420197644632116","698672127418695751"],"dstIndex":110,"srcIndex":1409,"timestampMs":1586646815877},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","696420197644632116","698673539011837994"],"dstIndex":111,"srcIndex":1409,"timestampMs":1586647152427},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","199630270285086720","695344752031432766","699383579402174494"],"dstIndex":65,"srcIndex":2,"timestampMs":1586816439248},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","199630270285086720","695344752031432766","699636647557464194"],"dstIndex":66,"srcIndex":2,"timestampMs":1586876775398},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","208321561982271489","695344752031432766","698710365046833192"],"dstIndex":27,"srcIndex":3,"timestampMs":1586655932438},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698919569078878289"],"dstIndex":30,"srcIndex":1412,"timestampMs":1586705810566},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698921167011971168"],"dstIndex":31,"srcIndex":1412,"timestampMs":1586706191543},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698921390845198426"],"dstIndex":32,"srcIndex":1412,"timestampMs":1586706244909},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","699006982681657354"],"dstIndex":46,"srcIndex":1412,"timestampMs":1586726651593},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","699007297099268116"],"dstIndex":47,"srcIndex":1412,"timestampMs":1586726726556},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","698942081858666527","699821888431587439"],"dstIndex":119,"srcIndex":1412,"timestampMs":1586920940264},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","291388682710024192","695344752031432766","698946297012420619"],"dstIndex":36,"srcIndex":4,"timestampMs":1586712183002},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","291388682710024192","696420197644632116","698956579168321617"],"dstIndex":113,"srcIndex":4,"timestampMs":1586714634459},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","699275497984622760"],"dstIndex":86,"srcIndex":1406,"timestampMs":1586790670630},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700064920104075394"],"dstIndex":100,"srcIndex":1406,"timestampMs":1586978883530},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700073516900417556"],"dstIndex":101,"srcIndex":1406,"timestampMs":1586980933166},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700083246087667833"],"dstIndex":103,"srcIndex":1406,"timestampMs":1586983252785},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700087985634541678"],"dstIndex":105,"srcIndex":1406,"timestampMs":1586984382781},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700468593451597902"],"dstIndex":108,"srcIndex":1406,"timestampMs":1587075126756},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700033440564641854"],"dstIndex":121,"srcIndex":1406,"timestampMs":1586971378223},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700051768008114186"],"dstIndex":137,"srcIndex":1406,"timestampMs":1586975747826},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700059438136033361"],"dstIndex":143,"srcIndex":1406,"timestampMs":1586977576527},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700371208880914563"],"dstIndex":162,"srcIndex":1406,"timestampMs":1587051908465},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700397997707755530"],"dstIndex":170,"srcIndex":1406,"timestampMs":1587058295419},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700399163313094746"],"dstIndex":174,"srcIndex":1406,"timestampMs":1587058573321},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","695344752031432766","699304903796981771"],"dstIndex":57,"srcIndex":1411,"timestampMs":1586797681522},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700040376085381152"],"dstIndex":125,"srcIndex":1411,"timestampMs":1586973031780},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":1411,"timestampMs":1586973160965},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700055780807802900"],"dstIndex":138,"srcIndex":1411,"timestampMs":1586976704552},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698965088530595990"],"dstIndex":37,"srcIndex":1405,"timestampMs":1586716663249},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698965418370400296"],"dstIndex":38,"srcIndex":1405,"timestampMs":1586716741889},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698969730580742174"],"dstIndex":42,"srcIndex":1405,"timestampMs":1586717770000},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699020835096231937"],"dstIndex":49,"srcIndex":1405,"timestampMs":1586729954266},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699021694240686190"],"dstIndex":50,"srcIndex":1405,"timestampMs":1586730159102},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":1405,"timestampMs":1586731027162},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699137595724267520"],"dstIndex":55,"srcIndex":1405,"timestampMs":1586757792169},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","696420039141752863","699407535194767410"],"dstIndex":92,"srcIndex":1405,"timestampMs":1586822150754},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","440281764204642314","695344917068906598","697318813192028200"],"dstIndex":71,"srcIndex":7,"timestampMs":1586324160622},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699306499930980452"],"dstIndex":58,"srcIndex":8,"timestampMs":1586798062070},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699325373472702534"],"dstIndex":60,"srcIndex":8,"timestampMs":1586802561873},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699326575627206778"],"dstIndex":62,"srcIndex":8,"timestampMs":1586802848489},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699358233437143163"],"dstIndex":64,"srcIndex":8,"timestampMs":1586810396299},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","505789102222737420","695344752031432766","698932174396850236"],"dstIndex":33,"srcIndex":9,"timestampMs":1586708815908},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","537858848912834561","696420039141752863","696789204767866911"],"dstIndex":80,"srcIndex":10,"timestampMs":1586197892134},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","696708274682069062"],"dstIndex":19,"srcIndex":1401,"timestampMs":1586178596898},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","698799127244308550"],"dstIndex":28,"srcIndex":1401,"timestampMs":1586677094995},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","699124769349566484"],"dstIndex":54,"srcIndex":1401,"timestampMs":1586754734123},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344917068906598","697081143551328256"],"dstIndex":70,"srcIndex":1401,"timestampMs":1586267495764},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344917068906598","697375832364023889"],"dstIndex":72,"srcIndex":1401,"timestampMs":1586337755052},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","696427343220047872"],"dstIndex":75,"srcIndex":1401,"timestampMs":1586111617618},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","696441890048049232"],"dstIndex":77,"srcIndex":1401,"timestampMs":1586115085852},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699122711745527878"],"dstIndex":82,"srcIndex":1401,"timestampMs":1586754243552},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699123164340551691"],"dstIndex":83,"srcIndex":1401,"timestampMs":1586754351459},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699939694221328435"],"dstIndex":97,"srcIndex":1401,"timestampMs":1586949027353},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","700345588725841990"],"dstIndex":106,"srcIndex":1401,"timestampMs":1587045800144},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","700354840445976616"],"dstIndex":107,"srcIndex":1401,"timestampMs":1587048005926},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696451005914546256"],"dstIndex":15,"srcIndex":1402,"timestampMs":1586117259244},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696454968831508630"],"dstIndex":16,"srcIndex":1402,"timestampMs":1586118204077},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696455224532926464"],"dstIndex":17,"srcIndex":1402,"timestampMs":1586118265041},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696730540039995493"],"dstIndex":20,"srcIndex":1402,"timestampMs":1586183905373},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696740396331696198"],"dstIndex":21,"srcIndex":1402,"timestampMs":1586186255296},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696769305131614260"],"dstIndex":22,"srcIndex":1402,"timestampMs":1586193147691},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698691171811328080"],"dstIndex":25,"srcIndex":1402,"timestampMs":1586651356414},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698710294427467857"],"dstIndex":26,"srcIndex":1402,"timestampMs":1586655915601},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698897288373993508"],"dstIndex":29,"srcIndex":1402,"timestampMs":1586700498432},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698935929942966332"],"dstIndex":34,"srcIndex":1402,"timestampMs":1586709711300},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698941350531301477"],"dstIndex":35,"srcIndex":1402,"timestampMs":1586711003669},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698968459890917436"],"dstIndex":39,"srcIndex":1402,"timestampMs":1586717467044},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698968989878976612"],"dstIndex":40,"srcIndex":1402,"timestampMs":1586717593403},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698969370533298296"],"dstIndex":41,"srcIndex":1402,"timestampMs":1586717684158},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698970943955140738"],"dstIndex":43,"srcIndex":1402,"timestampMs":1586718059291},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698973708316049488"],"dstIndex":44,"srcIndex":1402,"timestampMs":1586718718366},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698982179069362196"],"dstIndex":45,"srcIndex":1402,"timestampMs":1586720737951},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699016223303794728"],"dstIndex":48,"srcIndex":1402,"timestampMs":1586728854729},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699022762215211088"],"dstIndex":51,"srcIndex":1402,"timestampMs":1586730413727},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699024432244588644"],"dstIndex":52,"srcIndex":1402,"timestampMs":1586730811893},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699302777167413379"],"dstIndex":56,"srcIndex":1402,"timestampMs":1586797174494},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699318638519255111"],"dstIndex":59,"srcIndex":1402,"timestampMs":1586800956135},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699325915578236949"],"dstIndex":61,"srcIndex":1402,"timestampMs":1586802691121},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699342838756016128"],"dstIndex":63,"srcIndex":1402,"timestampMs":1586806725921},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699696022477340735"],"dstIndex":67,"srcIndex":1402,"timestampMs":1586890931482},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","700038397376331798"],"dstIndex":68,"srcIndex":1402,"timestampMs":1586972560019},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344917068906598","697073300131807274"],"dstIndex":69,"srcIndex":1402,"timestampMs":1586265625747},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":1402,"timestampMs":1586643849022},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":1402,"timestampMs":1586793570421},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696440757908799568"],"dstIndex":76,"srcIndex":1402,"timestampMs":1586114815929},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696452154268975225"],"dstIndex":78,"srcIndex":1402,"timestampMs":1586117533033},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696730851802742794"],"dstIndex":79,"srcIndex":1402,"timestampMs":1586183979703},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699020484167073792"],"dstIndex":81,"srcIndex":1402,"timestampMs":1586729870598},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699276546795372595"],"dstIndex":87,"srcIndex":1402,"timestampMs":1586790920686},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699278809974833224"],"dstIndex":89,"srcIndex":1402,"timestampMs":1586791460270},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699404949448163368"],"dstIndex":90,"srcIndex":1402,"timestampMs":1586821534264},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699406916300046346"],"dstIndex":91,"srcIndex":1402,"timestampMs":1586822003198},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699408033343733841"],"dstIndex":93,"srcIndex":1402,"timestampMs":1586822269522},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699410487020093501"],"dstIndex":94,"srcIndex":1402,"timestampMs":1586822854524},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700016555521736837"],"dstIndex":98,"srcIndex":1402,"timestampMs":1586967352515},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700064770367160361"],"dstIndex":99,"srcIndex":1402,"timestampMs":1586978847830},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700078148615798814"],"dstIndex":102,"srcIndex":1402,"timestampMs":1586982037453},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700085865933832252"],"dstIndex":104,"srcIndex":1402,"timestampMs":1586983877405},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","698667046661128244"],"dstIndex":109,"srcIndex":1402,"timestampMs":1586645604530},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","698683402920001637"],"dstIndex":112,"srcIndex":1402,"timestampMs":1586649504166},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699017594287685672"],"dstIndex":114,"srcIndex":1402,"timestampMs":1586729181597},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699283043940302898"],"dstIndex":115,"srcIndex":1402,"timestampMs":1586792469726},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699284090607763506"],"dstIndex":116,"srcIndex":1402,"timestampMs":1586792719271},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699303864872075295"],"dstIndex":117,"srcIndex":1402,"timestampMs":1586797433823},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699352914476400712"],"dstIndex":118,"srcIndex":1402,"timestampMs":1586809128160},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","698942081858666527","699822779670724650"],"dstIndex":120,"srcIndex":1402,"timestampMs":1586921152752},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700036022368731256"],"dstIndex":122,"srcIndex":1402,"timestampMs":1586971993773},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700040992916766780"],"dstIndex":127,"srcIndex":1402,"timestampMs":1586973178844},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700062058405953678"],"dstIndex":147,"srcIndex":1402,"timestampMs":1586978201248},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700064631778967634"],"dstIndex":151,"srcIndex":1402,"timestampMs":1586978814788},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699274952301609111"],"dstIndex":84,"srcIndex":12,"timestampMs":1586790540529},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699275129204637708"],"dstIndex":85,"srcIndex":12,"timestampMs":1586790582706},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699277478530646016"],"dstIndex":88,"srcIndex":12,"timestampMs":1586791142829},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699558251074682931"],"dstIndex":95,"srcIndex":12,"timestampMs":1586858084220},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699560532046250034"],"dstIndex":96,"srcIndex":12,"timestampMs":1586858628046},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","700023168995295233","700397481799974962"],"dstIndex":166,"srcIndex":12,"timestampMs":1587058172417},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","700023168995295233","700398301412982965"],"dstIndex":172,"srcIndex":12,"timestampMs":1587058367828},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","683892894767251489","695344752031432766","696609260196593664"],"dstIndex":18,"srcIndex":13,"timestampMs":1586154990005},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","683892894767251489","695344752031432766","696853096441184326"],"dstIndex":23,"srcIndex":13,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344752031432766","118260545211072517","698673271729553469","user","657069807505637397"],"dstIndex":1402,"srcIndex":24,"timestampMs":1586647088702},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699383579402174494","user","571023281382227978"],"dstIndex":1401,"srcIndex":65,"timestampMs":1586816439248},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699383579402174494","user","657069807505637397"],"dstIndex":1402,"srcIndex":65,"timestampMs":1586816439248},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699636647557464194","user","665203331639148553"],"dstIndex":12,"srcIndex":66,"timestampMs":1586876775398},{"address":["sourcecred","discord","MENTIONS","695344752031432766","208321561982271489","698710365046833192","user","657069807505637397"],"dstIndex":1402,"srcIndex":27,"timestampMs":1586655932438},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698919569078878289","user","657069807505637397"],"dstIndex":1402,"srcIndex":30,"timestampMs":1586705810566},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698921167011971168","user","118260545211072517"],"dstIndex":1409,"srcIndex":31,"timestampMs":1586706191543},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698921167011971168","user","420341518948237331"],"dstIndex":1405,"srcIndex":31,"timestampMs":1586706191543},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699006982681657354","user","250086586450968576"],"dstIndex":1412,"srcIndex":46,"timestampMs":1586726651593},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699006982681657354","user","657069807505637397"],"dstIndex":1402,"srcIndex":46,"timestampMs":1586726651593},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699007297099268116","user","657069807505637397"],"dstIndex":1402,"srcIndex":47,"timestampMs":1586726726556},{"address":["sourcecred","discord","MENTIONS","695344752031432766","291388682710024192","698946297012420619","user","250086586450968576"],"dstIndex":1412,"srcIndex":36,"timestampMs":1586712183002},{"address":["sourcecred","discord","MENTIONS","695344752031432766","363774203960360961","699304903796981771","user","464169801036726292"],"dstIndex":8,"srcIndex":57,"timestampMs":1586797681522},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","698965088530595990","user","657069807505637397"],"dstIndex":1402,"srcIndex":37,"timestampMs":1586716663249},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","698969730580742174","user","250086586450968576"],"dstIndex":1412,"srcIndex":42,"timestampMs":1586717770000},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699020835096231937","user","250086586450968576"],"dstIndex":1412,"srcIndex":49,"timestampMs":1586729954266},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699020835096231937","user","657069807505637397"],"dstIndex":1402,"srcIndex":49,"timestampMs":1586729954266},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699137595724267520","user","571023281382227978"],"dstIndex":1401,"srcIndex":55,"timestampMs":1586757792169},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699306499930980452","user","363774203960360961"],"dstIndex":1411,"srcIndex":58,"timestampMs":1586798062070},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699325373472702534","user","363774203960360961"],"dstIndex":1411,"srcIndex":60,"timestampMs":1586802561873},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699358233437143163","user","363774203960360961"],"dstIndex":1411,"srcIndex":64,"timestampMs":1586810396299},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699358233437143163","user","464169801036726292"],"dstIndex":8,"srcIndex":64,"timestampMs":1586810396299},{"address":["sourcecred","discord","MENTIONS","695344752031432766","505789102222737420","698932174396850236","user","571023281382227978"],"dstIndex":1401,"srcIndex":33,"timestampMs":1586708815908},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","696708274682069062","user","683892894767251489"],"dstIndex":13,"srcIndex":19,"timestampMs":1586178596898},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","698799127244308550","user","505789102222737420"],"dstIndex":9,"srcIndex":28,"timestampMs":1586677094995},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","699124769349566484","user","420341518948237331"],"dstIndex":1405,"srcIndex":54,"timestampMs":1586754734123},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696451005914546256","user","118260545211072517"],"dstIndex":1409,"srcIndex":15,"timestampMs":1586117259244},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696730540039995493","user","571023281382227978"],"dstIndex":1401,"srcIndex":20,"timestampMs":1586183905373},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696740396331696198","user","665203331639148553"],"dstIndex":12,"srcIndex":21,"timestampMs":1586186255296},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696769305131614260","user","371754999304290304"],"dstIndex":6,"srcIndex":22,"timestampMs":1586193147691},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698691171811328080","user","250086586450968576"],"dstIndex":1412,"srcIndex":25,"timestampMs":1586651356414},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698710294427467857","user","208321561982271489"],"dstIndex":3,"srcIndex":26,"timestampMs":1586655915601},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698897288373993508","user","250086586450968576"],"dstIndex":1412,"srcIndex":29,"timestampMs":1586700498432},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698897288373993508","user","571023281382227978"],"dstIndex":1401,"srcIndex":29,"timestampMs":1586700498432},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698935929942966332","user","333143183355543552"],"dstIndex":5,"srcIndex":34,"timestampMs":1586709711300},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698935929942966332","user","505789102222737420"],"dstIndex":9,"srcIndex":34,"timestampMs":1586709711300},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698941350531301477","user","250086586450968576"],"dstIndex":1412,"srcIndex":35,"timestampMs":1586711003669},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968459890917436","user","420341518948237331"],"dstIndex":1405,"srcIndex":39,"timestampMs":1586717467044},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","118260545211072517"],"dstIndex":1409,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","420341518948237331"],"dstIndex":1405,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","657069807505637397"],"dstIndex":1402,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698969370533298296","user","420341518948237331"],"dstIndex":1405,"srcIndex":41,"timestampMs":1586717684158},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698970943955140738","user","321092785921064961"],"dstIndex":1406,"srcIndex":43,"timestampMs":1586718059291},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698982179069362196","user","420341518948237331"],"dstIndex":1405,"srcIndex":45,"timestampMs":1586720737951},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699016223303794728","user","250086586450968576"],"dstIndex":1412,"srcIndex":48,"timestampMs":1586728854729},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699016223303794728","user","657069807505637397"],"dstIndex":1402,"srcIndex":48,"timestampMs":1586728854729},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699022762215211088","user","420341518948237331"],"dstIndex":1405,"srcIndex":51,"timestampMs":1586730413727},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699024432244588644","user","420341518948237331"],"dstIndex":1405,"srcIndex":52,"timestampMs":1586730811893},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699302777167413379","user","464169801036726292"],"dstIndex":8,"srcIndex":56,"timestampMs":1586797174494},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699318638519255111","user","464169801036726292"],"dstIndex":8,"srcIndex":59,"timestampMs":1586800956135},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699325915578236949","user","464169801036726292"],"dstIndex":8,"srcIndex":61,"timestampMs":1586802691121},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699342838756016128","user","199630270285086720"],"dstIndex":2,"srcIndex":63,"timestampMs":1586806725921},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699696022477340735","user","143776454050709505"],"dstIndex":1,"srcIndex":67,"timestampMs":1586890931482},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699696022477340735","user","633708951447535616"],"dstIndex":11,"srcIndex":67,"timestampMs":1586890931482},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","700038397376331798","bot","699326460120530944"],"dstIndex":0,"srcIndex":68,"timestampMs":1586972560019},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696609260196593664","user","657069807505637397"],"dstIndex":1402,"srcIndex":18,"timestampMs":1586154990005},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696853096441184326","user","571023281382227978"],"dstIndex":1401,"srcIndex":23,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696853096441184326","user","657069807505637397"],"dstIndex":1402,"srcIndex":23,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344917068906598","440281764204642314","697318813192028200","user","571023281382227978"],"dstIndex":1401,"srcIndex":71,"timestampMs":1586324160622},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697081143551328256","user","440281764204642314"],"dstIndex":7,"srcIndex":70,"timestampMs":1586267495764},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697375832364023889","user","440281764204642314"],"dstIndex":7,"srcIndex":72,"timestampMs":1586337755052},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697375832364023889","user","571023281382227978"],"dstIndex":1401,"srcIndex":72,"timestampMs":1586337755052},{"address":["sourcecred","discord","MENTIONS","695344917068906598","657069807505637397","697073300131807274","user","571023281382227978"],"dstIndex":1401,"srcIndex":69,"timestampMs":1586265625747},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700073516900417556","user","657069807505637397"],"dstIndex":1402,"srcIndex":101,"timestampMs":1586980933166},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700083246087667833","user","571023281382227978"],"dstIndex":1401,"srcIndex":103,"timestampMs":1586983252785},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700468593451597902","user","474405294307278880"],"dstIndex":1403,"srcIndex":108,"timestampMs":1587075126756},{"address":["sourcecred","discord","MENTIONS","696420039141752863","420341518948237331","699407535194767410","user","118260545211072517"],"dstIndex":1409,"srcIndex":92,"timestampMs":1586822150754},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","537858848912834561"],"dstIndex":10,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","571023281382227978"],"dstIndex":1401,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","657069807505637397"],"dstIndex":1402,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699122711745527878","user","657069807505637397"],"dstIndex":1402,"srcIndex":82,"timestampMs":1586754243552},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699939694221328435","user","571023281382227978"],"dstIndex":1401,"srcIndex":97,"timestampMs":1586949027353},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699939694221328435","user","665203331639148553"],"dstIndex":12,"srcIndex":97,"timestampMs":1586949027353},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","700345588725841990","user","321092785921064961"],"dstIndex":1406,"srcIndex":106,"timestampMs":1587045800144},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","700354840445976616","user","321092785921064961"],"dstIndex":1406,"srcIndex":107,"timestampMs":1587048005926},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696440757908799568","user","571023281382227978"],"dstIndex":1401,"srcIndex":76,"timestampMs":1586114815929},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696452154268975225","user","571023281382227978"],"dstIndex":1401,"srcIndex":78,"timestampMs":1586117533033},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696730851802742794","user","537858848912834561"],"dstIndex":10,"srcIndex":79,"timestampMs":1586183979703},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699020484167073792","user","571023281382227978"],"dstIndex":1401,"srcIndex":81,"timestampMs":1586729870598},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699276546795372595","user","321092785921064961"],"dstIndex":1406,"srcIndex":87,"timestampMs":1586790920686},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699278809974833224","user","118260545211072517"],"dstIndex":1409,"srcIndex":89,"timestampMs":1586791460270},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699404949448163368","user","321092785921064961"],"dstIndex":1406,"srcIndex":90,"timestampMs":1586821534264},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699404949448163368","user","571023281382227978"],"dstIndex":1401,"srcIndex":90,"timestampMs":1586821534264},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699406916300046346","user","420341518948237331"],"dstIndex":1405,"srcIndex":91,"timestampMs":1586822003198},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699408033343733841","user","420341518948237331"],"dstIndex":1405,"srcIndex":93,"timestampMs":1586822269522},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699410487020093501","user","440281764204642314"],"dstIndex":7,"srcIndex":94,"timestampMs":1586822854524},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700016555521736837","user","321092785921064961"],"dstIndex":1406,"srcIndex":98,"timestampMs":1586967352515},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700064770367160361","user","321092785921064961"],"dstIndex":1406,"srcIndex":99,"timestampMs":1586978847830},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700078148615798814","user","321092785921064961"],"dstIndex":1406,"srcIndex":102,"timestampMs":1586982037453},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700078148615798814","user","657069807505637397"],"dstIndex":1402,"srcIndex":102,"timestampMs":1586982037453},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700085865933832252","user","321092785921064961"],"dstIndex":1406,"srcIndex":104,"timestampMs":1586983877405},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699274952301609111","user","321092785921064961"],"dstIndex":1406,"srcIndex":84,"timestampMs":1586790540529},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699275129204637708","user","657069807505637397"],"dstIndex":1402,"srcIndex":85,"timestampMs":1586790582706},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699277478530646016","user","321092785921064961"],"dstIndex":1406,"srcIndex":88,"timestampMs":1586791142829},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699558251074682931","user","571023281382227978"],"dstIndex":1401,"srcIndex":95,"timestampMs":1586858084220},{"address":["sourcecred","discord","MENTIONS","696420197644632116","118260545211072517","698672127418695751","user","657069807505637397"],"dstIndex":1402,"srcIndex":110,"timestampMs":1586646815877},{"address":["sourcecred","discord","MENTIONS","696420197644632116","118260545211072517","698673539011837994","user","657069807505637397"],"dstIndex":1402,"srcIndex":111,"timestampMs":1586647152427},{"address":["sourcecred","discord","MENTIONS","696420197644632116","291388682710024192","698956579168321617","user","657069807505637397"],"dstIndex":1402,"srcIndex":113,"timestampMs":1586714634459},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","698667046661128244","user","118260545211072517"],"dstIndex":1409,"srcIndex":109,"timestampMs":1586645604530},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","698683402920001637","user","683892894767251489"],"dstIndex":13,"srcIndex":112,"timestampMs":1586649504166},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699017594287685672","user","683892894767251489"],"dstIndex":13,"srcIndex":114,"timestampMs":1586729181597},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699283043940302898","user","537858848912834561"],"dstIndex":10,"srcIndex":115,"timestampMs":1586792469726},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699284090607763506","user","537858848912834561"],"dstIndex":10,"srcIndex":116,"timestampMs":1586792719271},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699303864872075295","user","420341518948237331"],"dstIndex":1405,"srcIndex":117,"timestampMs":1586797433823},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699352914476400712","user","537858848912834561"],"dstIndex":10,"srcIndex":118,"timestampMs":1586809128160},{"address":["sourcecred","discord","MENTIONS","698942081858666527","250086586450968576","699821888431587439","user","657069807505637397"],"dstIndex":1402,"srcIndex":119,"timestampMs":1586920940264},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700033440564641854","user","657069807505637397"],"dstIndex":1402,"srcIndex":121,"timestampMs":1586971378223},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700051768008114186","user","363774203960360961"],"dstIndex":1411,"srcIndex":137,"timestampMs":1586975747826},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700059438136033361","user","657069807505637397"],"dstIndex":1402,"srcIndex":143,"timestampMs":1586977576527},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700371208880914563","bot","699326460120530944"],"dstIndex":0,"srcIndex":162,"timestampMs":1587051908465},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700397997707755530","user","474405294307278880"],"dstIndex":1403,"srcIndex":170,"timestampMs":1587058295419},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700399163313094746","user","665203331639148553"],"dstIndex":12,"srcIndex":174,"timestampMs":1587058573321},{"address":["sourcecred","discord","MENTIONS","700023168995295233","363774203960360961","700055780807802900","user","321092785921064961"],"dstIndex":1406,"srcIndex":138,"timestampMs":1586976704552},{"address":["sourcecred","discord","MENTIONS","700023168995295233","363774203960360961","700055780807802900","user","363774203960360961"],"dstIndex":1411,"srcIndex":138,"timestampMs":1586976704552},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700036022368731256","user","321092785921064961"],"dstIndex":1406,"srcIndex":122,"timestampMs":1586971993773},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700040992916766780","user","321092785921064961"],"dstIndex":1406,"srcIndex":127,"timestampMs":1586973178844},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700062058405953678","user","321092785921064961"],"dstIndex":1406,"srcIndex":147,"timestampMs":1586978201248},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700064631778967634","user","321092785921064961"],"dstIndex":1406,"srcIndex":151,"timestampMs":1586978814788},{"address":["sourcecred","discord","MENTIONS","700023168995295233","665203331639148553","700397481799974962","user","321092785921064961"],"dstIndex":1406,"srcIndex":166,"timestampMs":1587058172417},{"address":["sourcecred","discord","MENTIONS","700023168995295233","665203331639148553","700398301412982965","user","321092785921064961"],"dstIndex":1406,"srcIndex":172,"timestampMs":1587058367828},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700038868707180644","user","321092785921064961"],"dstIndex":1406,"srcIndex":123,"timestampMs":1586972672393},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700039441799970969","user","321092785921064961"],"dstIndex":1406,"srcIndex":124,"timestampMs":1586972809029},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044206176993470","user","657069807505637397"],"dstIndex":1402,"srcIndex":128,"timestampMs":1586973944945},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044421760286721","user","657069807505637397"],"dstIndex":1402,"srcIndex":129,"timestampMs":1586973996344},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044496049799228","user","657069807505637397"],"dstIndex":1402,"srcIndex":130,"timestampMs":1586974014056},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044548411490335","user","657069807505637397"],"dstIndex":1402,"srcIndex":131,"timestampMs":1586974026540},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044635619328131","user","657069807505637397"],"dstIndex":1402,"srcIndex":132,"timestampMs":1586974047332},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044689285316738","user","657069807505637397"],"dstIndex":1402,"srcIndex":133,"timestampMs":1586974060127},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049028251123832","user","363774203960360961"],"dstIndex":1411,"srcIndex":134,"timestampMs":1586975094617},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049257490808933","user","363774203960360961"],"dstIndex":1411,"srcIndex":135,"timestampMs":1586975149272},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049378643017889","user","363774203960360961"],"dstIndex":1411,"srcIndex":136,"timestampMs":1586975178157},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700056792524128306","user","321092785921064961"],"dstIndex":1406,"srcIndex":139,"timestampMs":1586976945764},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059334679330946","user","657069807505637397"],"dstIndex":1402,"srcIndex":140,"timestampMs":1586977551861},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059353306234910","user","657069807505637397"],"dstIndex":1402,"srcIndex":141,"timestampMs":1586977556302},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059384751063091","user","657069807505637397"],"dstIndex":1402,"srcIndex":142,"timestampMs":1586977563799},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059438526103572","user","321092785921064961"],"dstIndex":1406,"srcIndex":144,"timestampMs":1586977576620},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059538023514154","user","657069807505637397"],"dstIndex":1402,"srcIndex":145,"timestampMs":1586977600342},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700061097583050871","user","321092785921064961"],"dstIndex":1406,"srcIndex":146,"timestampMs":1586977972170},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700062189503119381","user","321092785921064961"],"dstIndex":1406,"srcIndex":148,"timestampMs":1586978232504},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700062400774275204","user","363774203960360961"],"dstIndex":1411,"srcIndex":149,"timestampMs":1586978282875},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700063628711166054","user","321092785921064961"],"dstIndex":1406,"srcIndex":150,"timestampMs":1586978575638},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700064632144003103","user","657069807505637397"],"dstIndex":1402,"srcIndex":152,"timestampMs":1586978814875},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700118599003668510","user","321092785921064961"],"dstIndex":1406,"srcIndex":153,"timestampMs":1586991681577},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700335319349985310","user","321092785921064961"],"dstIndex":1406,"srcIndex":154,"timestampMs":1587043351734},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700335919315550299","user","321092785921064961"],"dstIndex":1406,"srcIndex":155,"timestampMs":1587043494777},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700365992571699350","user","665203331639148553"],"dstIndex":12,"srcIndex":156,"timestampMs":1587050664800},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700366555233517630","user","665203331639148553"],"dstIndex":12,"srcIndex":157,"timestampMs":1587050798949},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700367514638483537","user","665203331639148553"],"dstIndex":12,"srcIndex":158,"timestampMs":1587051027689},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700369922630615040","user","321092785921064961"],"dstIndex":1406,"srcIndex":159,"timestampMs":1587051601799},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700370207419662458","user","321092785921064961"],"dstIndex":1406,"srcIndex":160,"timestampMs":1587051669698},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700370372230643763","user","321092785921064961"],"dstIndex":1406,"srcIndex":161,"timestampMs":1587051708992},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700371209241624656","user","321092785921064961"],"dstIndex":1406,"srcIndex":163,"timestampMs":1587051908551},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700371558480216124","user","321092785921064961"],"dstIndex":1406,"srcIndex":164,"timestampMs":1587051991816},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397237930295386","user","665203331639148553"],"dstIndex":12,"srcIndex":165,"timestampMs":1587058114274},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397482362011769","user","665203331639148553"],"dstIndex":12,"srcIndex":167,"timestampMs":1587058172551},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397866581229620","user","474405294307278880"],"dstIndex":1403,"srcIndex":168,"timestampMs":1587058264156},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397927478067221","user","474405294307278880"],"dstIndex":1403,"srcIndex":169,"timestampMs":1587058278675},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700398207733334077","user","665203331639148553"],"dstIndex":12,"srcIndex":171,"timestampMs":1587058345493},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700398301727555604","user","665203331639148553"],"dstIndex":12,"srcIndex":173,"timestampMs":1587058367903},{"address":["sourcecred","discord","REACTS_TO","❤️","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":175,"timestampMs":1585931015500},{"address":["sourcecred","discord","REACTS_TO","👍","118260545211072517","695344752031432766","696454968831508630"],"dstIndex":16,"srcIndex":176,"timestampMs":1586118204077},{"address":["sourcecred","discord","REACTS_TO","👍","118260545211072517","695344752031432766","696455224532926464"],"dstIndex":17,"srcIndex":177,"timestampMs":1586118265041},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","695344752031432766","699021694240686190"],"dstIndex":50,"srcIndex":178,"timestampMs":1586730159102},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":179,"timestampMs":1586731027162},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","698942081858666527","699822779670724650"],"dstIndex":120,"srcIndex":205,"timestampMs":1586921152752},{"address":["sourcecred","discord","REACTS_TO","👍","537858848912834561","696420197644632116","699284090607763506"],"dstIndex":116,"srcIndex":204,"timestampMs":1586792719271},{"address":["sourcecred","discord","REACTS_TO","👍","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":180,"timestampMs":1585931015500},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":181,"timestampMs":1586731027162},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","695344752031432766","699326575627206778"],"dstIndex":62,"srcIndex":182,"timestampMs":1586802848489},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","696427343220047872"],"dstIndex":75,"srcIndex":197,"timestampMs":1586111617618},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","696441890048049232"],"dstIndex":77,"srcIndex":198,"timestampMs":1586115085852},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","699123164340551691"],"dstIndex":83,"srcIndex":199,"timestampMs":1586754351459},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","700087985634541678"],"dstIndex":105,"srcIndex":200,"timestampMs":1586984382781},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","700023168995295233","700040376085381152"],"dstIndex":125,"srcIndex":206,"timestampMs":1586973031780},{"address":["sourcecred","discord","REACTS_TO","💯","321092785921064961","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":207,"timestampMs":1586973160965},{"address":["sourcecred","discord","REACTS_TO","💯","571023281382227978","695344752031432766","696730540039995493"],"dstIndex":20,"srcIndex":183,"timestampMs":1586183905373},{"address":["sourcecred","discord","REACTS_TO","💯","657069807505637397","695344752031432766","698965418370400296"],"dstIndex":38,"srcIndex":184,"timestampMs":1586716741889},{"address":["sourcecred","discord","REACTS_TO","💯","657069807505637397","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":208,"timestampMs":1586973160965},{"address":["sourcecred","discord","REACTS_TO","🔥","118260545211072517","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":188,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","250086586450968576","695344752031432766","698969730580742174"],"dstIndex":42,"srcIndex":185,"timestampMs":1586717770000},{"address":["sourcecred","discord","REACTS_TO","🔥","250086586450968576","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":189,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","291388682710024192","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":190,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","291388682710024192","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":191,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","695344752031432766","698973708316049488"],"dstIndex":44,"srcIndex":186,"timestampMs":1586718718366},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":192,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","696420039141752863","699560532046250034"],"dstIndex":96,"srcIndex":201,"timestampMs":1586858628046},{"address":["sourcecred","discord","REACTS_TO","🔥","363774203960360961","700023168995295233","700039441799970969"],"dstIndex":124,"srcIndex":209,"timestampMs":1586972809029},{"address":["sourcecred","discord","REACTS_TO","🔥","440281764204642314","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":193,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","695344752031432766","698921390845198426"],"dstIndex":32,"srcIndex":187,"timestampMs":1586706244909},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":194,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":195,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696420039141752863","699275497984622760"],"dstIndex":86,"srcIndex":202,"timestampMs":1586790670630},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696420039141752863","700064920104075394"],"dstIndex":100,"srcIndex":203,"timestampMs":1586978883530},{"address":["sourcecred","discord","REACTS_TO","🔥","683892894767251489","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":196,"timestampMs":1586643849022},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","AlexMasmej","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],"dstIndex":983,"srcIndex":1395,"timestampMs":1582941505000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],"dstIndex":873,"srcIndex":1396,"timestampMs":1582978132000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],"dstIndex":906,"srcIndex":1396,"timestampMs":1581914566000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":907,"srcIndex":1396,"timestampMs":1581914856000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],"dstIndex":908,"srcIndex":1396,"timestampMs":1581911765000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],"dstIndex":938,"srcIndex":1396,"timestampMs":1581914897000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],"dstIndex":967,"srcIndex":1396,"timestampMs":1581898623000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],"dstIndex":975,"srcIndex":1396,"timestampMs":1581903076000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":982,"srcIndex":1396,"timestampMs":1581902687000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],"dstIndex":997,"srcIndex":1396,"timestampMs":1581900781000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":1026,"srcIndex":1396,"timestampMs":1581914667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":1028,"srcIndex":1396,"timestampMs":1581903056000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],"dstIndex":1050,"srcIndex":1396,"timestampMs":1581898638000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],"dstIndex":786,"srcIndex":1397,"timestampMs":1586921892000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],"dstIndex":787,"srcIndex":1397,"timestampMs":1586930578000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],"dstIndex":788,"srcIndex":1397,"timestampMs":1586920791000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],"dstIndex":789,"srcIndex":1397,"timestampMs":1586921871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],"dstIndex":790,"srcIndex":1397,"timestampMs":1586920549000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],"dstIndex":791,"srcIndex":1397,"timestampMs":1586839193000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],"dstIndex":792,"srcIndex":1397,"timestampMs":1586916947000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],"dstIndex":793,"srcIndex":1397,"timestampMs":1586919065000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],"dstIndex":794,"srcIndex":1397,"timestampMs":1586971104000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],"dstIndex":795,"srcIndex":1397,"timestampMs":1586957209000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],"dstIndex":796,"srcIndex":1397,"timestampMs":1586915756000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],"dstIndex":797,"srcIndex":1397,"timestampMs":1586916992000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],"dstIndex":798,"srcIndex":1397,"timestampMs":1586932748000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],"dstIndex":799,"srcIndex":1397,"timestampMs":1586934527000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],"dstIndex":802,"srcIndex":1397,"timestampMs":1586805309000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],"dstIndex":803,"srcIndex":1397,"timestampMs":1586918718000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],"dstIndex":804,"srcIndex":1397,"timestampMs":1586831849000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],"dstIndex":805,"srcIndex":1397,"timestampMs":1586977731000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],"dstIndex":806,"srcIndex":1397,"timestampMs":1586921823000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],"dstIndex":807,"srcIndex":1397,"timestampMs":1586960050000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],"dstIndex":808,"srcIndex":1397,"timestampMs":1586933937000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],"dstIndex":809,"srcIndex":1397,"timestampMs":1586832132000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],"dstIndex":810,"srcIndex":1397,"timestampMs":1586958454000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],"dstIndex":1099,"srcIndex":1397,"timestampMs":1586972808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],"dstIndex":1107,"srcIndex":1397,"timestampMs":1587058277000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],"dstIndex":1108,"srcIndex":1397,"timestampMs":1587049226000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],"dstIndex":1123,"srcIndex":1397,"timestampMs":1586978574000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],"dstIndex":1157,"srcIndex":1397,"timestampMs":1586802604000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],"dstIndex":1158,"srcIndex":1397,"timestampMs":1586972788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],"dstIndex":1182,"srcIndex":1397,"timestampMs":1587058263000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],"dstIndex":1188,"srcIndex":1397,"timestampMs":1587050798000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],"dstIndex":1189,"srcIndex":1397,"timestampMs":1587051668000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],"dstIndex":1193,"srcIndex":1397,"timestampMs":1586978547000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],"dstIndex":1194,"srcIndex":1397,"timestampMs":1587051026000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],"dstIndex":1198,"srcIndex":1397,"timestampMs":1586975177000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],"dstIndex":1221,"srcIndex":1397,"timestampMs":1587051708000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],"dstIndex":1240,"srcIndex":1397,"timestampMs":1586820040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],"dstIndex":1267,"srcIndex":1397,"timestampMs":1587049279000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1339,"srcIndex":1397,"timestampMs":1586934042000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","3"],"dstIndex":1340,"srcIndex":1397,"timestampMs":1586934224000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1341,"srcIndex":1397,"timestampMs":1586990170000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","6"],"dstIndex":1342,"srcIndex":1397,"timestampMs":1586990449000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","7"],"dstIndex":1343,"srcIndex":1397,"timestampMs":1586990584000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1361,"srcIndex":1397,"timestampMs":1586802611000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1367,"srcIndex":1397,"timestampMs":1586970997000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","website","12"],"dstIndex":1371,"srcIndex":1397,"timestampMs":1586717760000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","bot","8","395001410"],"dstIndex":1392,"srcIndex":1397,"timestampMs":1587071400000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","bot","8","395035075"],"dstIndex":1393,"srcIndex":1397,"timestampMs":1587075078000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","website","15","393444362"],"dstIndex":1394,"srcIndex":1397,"timestampMs":1586924060000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],"dstIndex":758,"srcIndex":1397,"timestampMs":1586990245000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],"dstIndex":760,"srcIndex":1397,"timestampMs":1586797413000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],"dstIndex":762,"srcIndex":1397,"timestampMs":1586801948000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],"dstIndex":764,"srcIndex":1397,"timestampMs":1586802422000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":778,"srcIndex":1397,"timestampMs":1587071400000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":779,"srcIndex":1397,"timestampMs":1587071419000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":780,"srcIndex":1397,"timestampMs":1587071453000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],"dstIndex":781,"srcIndex":1402,"timestampMs":1586666528000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],"dstIndex":782,"srcIndex":1402,"timestampMs":1586706188000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],"dstIndex":783,"srcIndex":1402,"timestampMs":1586709195000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],"dstIndex":784,"srcIndex":1402,"timestampMs":1586710102000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],"dstIndex":785,"srcIndex":1402,"timestampMs":1586709961000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],"dstIndex":811,"srcIndex":1402,"timestampMs":1586730565000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],"dstIndex":812,"srcIndex":1402,"timestampMs":1586643786000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],"dstIndex":813,"srcIndex":1402,"timestampMs":1586664558000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],"dstIndex":814,"srcIndex":1402,"timestampMs":1586566020000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],"dstIndex":815,"srcIndex":1402,"timestampMs":1586710826000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],"dstIndex":816,"srcIndex":1402,"timestampMs":1586727748000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],"dstIndex":817,"srcIndex":1402,"timestampMs":1586570955000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],"dstIndex":818,"srcIndex":1402,"timestampMs":1586662685000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],"dstIndex":819,"srcIndex":1402,"timestampMs":1586127122000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],"dstIndex":820,"srcIndex":1402,"timestampMs":1586658983000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],"dstIndex":821,"srcIndex":1402,"timestampMs":1586566694000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],"dstIndex":822,"srcIndex":1402,"timestampMs":1586656936000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],"dstIndex":823,"srcIndex":1402,"timestampMs":1586797014000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],"dstIndex":824,"srcIndex":1402,"timestampMs":1586727823000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],"dstIndex":825,"srcIndex":1402,"timestampMs":1586103464000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],"dstIndex":826,"srcIndex":1402,"timestampMs":1586633871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],"dstIndex":827,"srcIndex":1402,"timestampMs":1586647160000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],"dstIndex":828,"srcIndex":1402,"timestampMs":1586660251000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],"dstIndex":829,"srcIndex":1402,"timestampMs":1586649927000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],"dstIndex":831,"srcIndex":1402,"timestampMs":1586571027000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],"dstIndex":832,"srcIndex":1402,"timestampMs":1586644808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],"dstIndex":833,"srcIndex":1402,"timestampMs":1586650718000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],"dstIndex":834,"srcIndex":1402,"timestampMs":1586103441000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],"dstIndex":835,"srcIndex":1402,"timestampMs":1586568293000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],"dstIndex":836,"srcIndex":1402,"timestampMs":1586646704000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],"dstIndex":837,"srcIndex":1402,"timestampMs":1586663015000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],"dstIndex":838,"srcIndex":1402,"timestampMs":1586639136000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],"dstIndex":839,"srcIndex":1402,"timestampMs":1586663769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],"dstIndex":840,"srcIndex":1402,"timestampMs":1586652307000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],"dstIndex":841,"srcIndex":1402,"timestampMs":1586570353000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],"dstIndex":842,"srcIndex":1402,"timestampMs":1586638395000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],"dstIndex":843,"srcIndex":1402,"timestampMs":1586657067000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],"dstIndex":844,"srcIndex":1402,"timestampMs":1586649206000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],"dstIndex":845,"srcIndex":1402,"timestampMs":1586729040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],"dstIndex":846,"srcIndex":1402,"timestampMs":1586567498000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],"dstIndex":848,"srcIndex":1402,"timestampMs":1586568912000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],"dstIndex":849,"srcIndex":1402,"timestampMs":1586640470000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],"dstIndex":850,"srcIndex":1402,"timestampMs":1586111771000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],"dstIndex":851,"srcIndex":1402,"timestampMs":1586569076000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],"dstIndex":852,"srcIndex":1402,"timestampMs":1586648621000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],"dstIndex":853,"srcIndex":1402,"timestampMs":1586111689000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],"dstIndex":854,"srcIndex":1402,"timestampMs":1586651543000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],"dstIndex":855,"srcIndex":1402,"timestampMs":1586661631000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],"dstIndex":856,"srcIndex":1402,"timestampMs":1586739277000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],"dstIndex":857,"srcIndex":1402,"timestampMs":1586644660000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],"dstIndex":858,"srcIndex":1402,"timestampMs":1586792089000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],"dstIndex":859,"srcIndex":1402,"timestampMs":1586645107000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],"dstIndex":860,"srcIndex":1402,"timestampMs":1586656870000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],"dstIndex":861,"srcIndex":1402,"timestampMs":1586790290000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],"dstIndex":862,"srcIndex":1402,"timestampMs":1586571301000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],"dstIndex":863,"srcIndex":1402,"timestampMs":1586565903000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],"dstIndex":864,"srcIndex":1402,"timestampMs":1586633977000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],"dstIndex":865,"srcIndex":1402,"timestampMs":1586645253000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],"dstIndex":866,"srcIndex":1402,"timestampMs":1586567811000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],"dstIndex":867,"srcIndex":1402,"timestampMs":1586664528000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],"dstIndex":868,"srcIndex":1402,"timestampMs":1586645187000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],"dstIndex":870,"srcIndex":1402,"timestampMs":1586654110000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],"dstIndex":871,"srcIndex":1402,"timestampMs":1586570850000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],"dstIndex":898,"srcIndex":1402,"timestampMs":1586106320000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],"dstIndex":909,"srcIndex":1402,"timestampMs":1586106153000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],"dstIndex":933,"srcIndex":1402,"timestampMs":1586112503000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],"dstIndex":944,"srcIndex":1402,"timestampMs":1586109721000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],"dstIndex":964,"srcIndex":1402,"timestampMs":1586106389000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],"dstIndex":1007,"srcIndex":1402,"timestampMs":1586105574000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],"dstIndex":1014,"srcIndex":1402,"timestampMs":1586106281000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],"dstIndex":1057,"srcIndex":1402,"timestampMs":1583592448000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],"dstIndex":1111,"srcIndex":1402,"timestampMs":1586710226000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],"dstIndex":1113,"srcIndex":1402,"timestampMs":1586718047000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],"dstIndex":1120,"srcIndex":1402,"timestampMs":1586796945000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],"dstIndex":1146,"srcIndex":1402,"timestampMs":1586822144000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],"dstIndex":1149,"srcIndex":1402,"timestampMs":1586712379000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],"dstIndex":1153,"srcIndex":1402,"timestampMs":1586810697000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],"dstIndex":1167,"srcIndex":1402,"timestampMs":1587042850000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],"dstIndex":1197,"srcIndex":1402,"timestampMs":1586717770000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],"dstIndex":1209,"srcIndex":1402,"timestampMs":1586704728000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],"dstIndex":1213,"srcIndex":1402,"timestampMs":1586810650000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],"dstIndex":1228,"srcIndex":1402,"timestampMs":1586710445000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],"dstIndex":1238,"srcIndex":1402,"timestampMs":1586711922000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],"dstIndex":1239,"srcIndex":1402,"timestampMs":1586712103000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],"dstIndex":1247,"srcIndex":1402,"timestampMs":1586704788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],"dstIndex":1282,"srcIndex":1402,"timestampMs":1586109667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],"dstIndex":1284,"srcIndex":1402,"timestampMs":1583868918000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],"dstIndex":1286,"srcIndex":1402,"timestampMs":1586115483000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],"dstIndex":1288,"srcIndex":1402,"timestampMs":1586115750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],"dstIndex":1295,"srcIndex":1402,"timestampMs":1586115035000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],"dstIndex":1297,"srcIndex":1402,"timestampMs":1586116855000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],"dstIndex":1303,"srcIndex":1402,"timestampMs":1586115569000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],"dstIndex":1306,"srcIndex":1402,"timestampMs":1586115692000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],"dstIndex":1307,"srcIndex":1402,"timestampMs":1586115737000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],"dstIndex":1309,"srcIndex":1402,"timestampMs":1586115523000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],"dstIndex":1311,"srcIndex":1402,"timestampMs":1584925959000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],"dstIndex":1314,"srcIndex":1402,"timestampMs":1586115159000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","12"],"dstIndex":1317,"srcIndex":1402,"timestampMs":1586638125000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1318,"srcIndex":1402,"timestampMs":1586704018000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","15"],"dstIndex":1319,"srcIndex":1402,"timestampMs":1586705495000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1320,"srcIndex":1402,"timestampMs":1586705553000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","17"],"dstIndex":1321,"srcIndex":1402,"timestampMs":1586705865000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","18"],"dstIndex":1322,"srcIndex":1402,"timestampMs":1586712839000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","22"],"dstIndex":1325,"srcIndex":1402,"timestampMs":1586819336000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":1402,"timestampMs":1586821830000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","24"],"dstIndex":1327,"srcIndex":1402,"timestampMs":1586823283000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","26"],"dstIndex":1329,"srcIndex":1402,"timestampMs":1586921943000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","TheSource","3"],"dstIndex":1336,"srcIndex":1402,"timestampMs":1586104764000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1337,"srcIndex":1402,"timestampMs":1586116752000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1338,"srcIndex":1402,"timestampMs":1586917207000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","comms","1"],"dstIndex":1344,"srcIndex":1402,"timestampMs":1586709265000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","leaderboard","1"],"dstIndex":1345,"srcIndex":1402,"timestampMs":1586706267000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","leaderboard","2"],"dstIndex":1346,"srcIndex":1402,"timestampMs":1586706318000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","1"],"dstIndex":1347,"srcIndex":1402,"timestampMs":1586666816000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","2"],"dstIndex":1348,"srcIndex":1402,"timestampMs":1586666998000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","3"],"dstIndex":1349,"srcIndex":1402,"timestampMs":1586705051000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1350,"srcIndex":1402,"timestampMs":1586709014000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","10"],"dstIndex":1353,"srcIndex":1402,"timestampMs":1586705290000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","11"],"dstIndex":1354,"srcIndex":1402,"timestampMs":1586712148000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","2"],"dstIndex":1355,"srcIndex":1402,"timestampMs":1586571331000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","7"],"dstIndex":1356,"srcIndex":1402,"timestampMs":1586662991000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1370,"srcIndex":1402,"timestampMs":1586566012000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1372,"srcIndex":1402,"timestampMs":1586727817000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1373,"srcIndex":1402,"timestampMs":1586797004000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1376,"srcIndex":1402,"timestampMs":1586633970000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1377,"srcIndex":1402,"timestampMs":1586645179000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1378,"srcIndex":1402,"timestampMs":1586654103000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1379,"srcIndex":1402,"timestampMs":1586656931000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1380,"srcIndex":1402,"timestampMs":1586663009000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1381,"srcIndex":1402,"timestampMs":1586664552000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],"dstIndex":746,"srcIndex":1402,"timestampMs":1586735225000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],"dstIndex":747,"srcIndex":1402,"timestampMs":1586793675000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],"dstIndex":748,"srcIndex":1402,"timestampMs":1586821838000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],"dstIndex":751,"srcIndex":1402,"timestampMs":1586808032000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],"dstIndex":752,"srcIndex":1402,"timestampMs":1586819514000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],"dstIndex":753,"srcIndex":1402,"timestampMs":1586820570000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],"dstIndex":754,"srcIndex":1402,"timestampMs":1586840296000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],"dstIndex":756,"srcIndex":1402,"timestampMs":1586922019000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],"dstIndex":757,"srcIndex":1402,"timestampMs":1586802750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],"dstIndex":759,"srcIndex":1402,"timestampMs":1586666872000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":761,"srcIndex":1402,"timestampMs":1586801390000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":763,"srcIndex":1402,"timestampMs":1586802204000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],"dstIndex":766,"srcIndex":1402,"timestampMs":1586704028000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],"dstIndex":767,"srcIndex":1402,"timestampMs":1586709561000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],"dstIndex":771,"srcIndex":1402,"timestampMs":1586786432000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],"dstIndex":772,"srcIndex":1402,"timestampMs":1586786582000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":774,"srcIndex":1402,"timestampMs":1586790870000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":776,"srcIndex":1402,"timestampMs":1586810690000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","c0mput3rxz","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],"dstIndex":972,"srcIndex":1398,"timestampMs":1583542889000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],"dstIndex":801,"srcIndex":1403,"timestampMs":1587075097000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":1403,"timestampMs":1587070982000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","bot","9"],"dstIndex":1369,"srcIndex":1403,"timestampMs":1587079858000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1374,"srcIndex":1403,"timestampMs":1586914696000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","8","sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],"dstIndex":777,"srcIndex":1403,"timestampMs":1587079943000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],"dstIndex":877,"srcIndex":1409,"timestampMs":1583619788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],"dstIndex":879,"srcIndex":1409,"timestampMs":1585275196000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],"dstIndex":887,"srcIndex":1409,"timestampMs":1583545099000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],"dstIndex":919,"srcIndex":1409,"timestampMs":1583124213000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],"dstIndex":931,"srcIndex":1409,"timestampMs":1582959287000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],"dstIndex":937,"srcIndex":1409,"timestampMs":1583096048000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],"dstIndex":959,"srcIndex":1409,"timestampMs":1585275681000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],"dstIndex":976,"srcIndex":1409,"timestampMs":1583014162000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],"dstIndex":999,"srcIndex":1409,"timestampMs":1583124366000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":1000,"srcIndex":1409,"timestampMs":1582959276000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],"dstIndex":1013,"srcIndex":1409,"timestampMs":1583124346000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],"dstIndex":1018,"srcIndex":1409,"timestampMs":1585361688000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":1037,"srcIndex":1409,"timestampMs":1582941407000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],"dstIndex":1038,"srcIndex":1409,"timestampMs":1582941413000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],"dstIndex":1053,"srcIndex":1409,"timestampMs":1583124164000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],"dstIndex":1056,"srcIndex":1409,"timestampMs":1582941750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],"dstIndex":1061,"srcIndex":1409,"timestampMs":1585365677000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],"dstIndex":800,"srcIndex":1410,"timestampMs":1587052319000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],"dstIndex":830,"srcIndex":1410,"timestampMs":1586855777000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],"dstIndex":847,"srcIndex":1410,"timestampMs":1586855462000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],"dstIndex":869,"srcIndex":1410,"timestampMs":1586874980000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1410,"timestampMs":1586858542000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","onboarding","5"],"dstIndex":1351,"srcIndex":1410,"timestampMs":1586772477000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","onboarding","6"],"dstIndex":1352,"srcIndex":1410,"timestampMs":1586772739000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],"dstIndex":749,"srcIndex":1410,"timestampMs":1586773257000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],"dstIndex":755,"srcIndex":1410,"timestampMs":1586858608000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],"dstIndex":765,"srcIndex":1410,"timestampMs":1586962450000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],"dstIndex":768,"srcIndex":1410,"timestampMs":1586858205000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":769,"srcIndex":1410,"timestampMs":1586773337000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":770,"srcIndex":1410,"timestampMs":1586773655000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],"dstIndex":773,"srcIndex":1410,"timestampMs":1586790511000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],"dstIndex":775,"srcIndex":1410,"timestampMs":1586959270000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],"dstIndex":930,"srcIndex":1412,"timestampMs":1583107086000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],"dstIndex":950,"srcIndex":1412,"timestampMs":1583122040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],"dstIndex":969,"srcIndex":1412,"timestampMs":1583106975000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],"dstIndex":1094,"srcIndex":1412,"timestampMs":1586994934000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],"dstIndex":1211,"srcIndex":1412,"timestampMs":1586810374000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1412,"timestampMs":1586810530000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1363,"srcIndex":1412,"timestampMs":1586995113000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],"dstIndex":874,"srcIndex":1401,"timestampMs":1586104482000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],"dstIndex":896,"srcIndex":1401,"timestampMs":1586104041000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],"dstIndex":921,"srcIndex":1401,"timestampMs":1586105522000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],"dstIndex":941,"srcIndex":1401,"timestampMs":1586104299000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],"dstIndex":996,"srcIndex":1401,"timestampMs":1586103659000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],"dstIndex":1022,"srcIndex":1401,"timestampMs":1586104090000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],"dstIndex":1048,"srcIndex":1401,"timestampMs":1586103656000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],"dstIndex":1072,"srcIndex":1401,"timestampMs":1586425053000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],"dstIndex":1073,"srcIndex":1401,"timestampMs":1586114858000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],"dstIndex":1074,"srcIndex":1401,"timestampMs":1586658939000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],"dstIndex":1075,"srcIndex":1401,"timestampMs":1586425366000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],"dstIndex":1076,"srcIndex":1401,"timestampMs":1586377189000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],"dstIndex":1077,"srcIndex":1401,"timestampMs":1586109857000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],"dstIndex":1079,"srcIndex":1401,"timestampMs":1586439223000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],"dstIndex":1082,"srcIndex":1401,"timestampMs":1586430244000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],"dstIndex":1083,"srcIndex":1401,"timestampMs":1586430128000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],"dstIndex":1085,"srcIndex":1401,"timestampMs":1586638157000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":1088,"srcIndex":1401,"timestampMs":1586535321000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],"dstIndex":1089,"srcIndex":1401,"timestampMs":1586436690000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],"dstIndex":1090,"srcIndex":1401,"timestampMs":1586760993000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],"dstIndex":1093,"srcIndex":1401,"timestampMs":1586425839000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],"dstIndex":1095,"srcIndex":1401,"timestampMs":1586475320000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],"dstIndex":1098,"srcIndex":1401,"timestampMs":1586636313000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],"dstIndex":1100,"srcIndex":1401,"timestampMs":1586436960000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],"dstIndex":1101,"srcIndex":1401,"timestampMs":1586645851000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],"dstIndex":1102,"srcIndex":1401,"timestampMs":1586114997000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],"dstIndex":1103,"srcIndex":1401,"timestampMs":1586436983000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],"dstIndex":1104,"srcIndex":1401,"timestampMs":1586439726000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],"dstIndex":1109,"srcIndex":1401,"timestampMs":1586430447000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],"dstIndex":1110,"srcIndex":1401,"timestampMs":1586438375000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],"dstIndex":1112,"srcIndex":1401,"timestampMs":1586110667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],"dstIndex":1114,"srcIndex":1401,"timestampMs":1586439440000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],"dstIndex":1115,"srcIndex":1401,"timestampMs":1586658493000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],"dstIndex":1118,"srcIndex":1401,"timestampMs":1586641745000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],"dstIndex":1122,"srcIndex":1401,"timestampMs":1586446367000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],"dstIndex":1125,"srcIndex":1401,"timestampMs":1586107822000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],"dstIndex":1128,"srcIndex":1401,"timestampMs":1586111848000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],"dstIndex":1129,"srcIndex":1401,"timestampMs":1586450203000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],"dstIndex":1131,"srcIndex":1401,"timestampMs":1586208161000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],"dstIndex":1135,"srcIndex":1401,"timestampMs":1586608102000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],"dstIndex":1139,"srcIndex":1401,"timestampMs":1586438648000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],"dstIndex":1143,"srcIndex":1401,"timestampMs":1586447296000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],"dstIndex":1144,"srcIndex":1401,"timestampMs":1586262990000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],"dstIndex":1145,"srcIndex":1401,"timestampMs":1586108344000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],"dstIndex":1151,"srcIndex":1401,"timestampMs":1586629712000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],"dstIndex":1155,"srcIndex":1401,"timestampMs":1586630579000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],"dstIndex":1156,"srcIndex":1401,"timestampMs":1586640176000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],"dstIndex":1159,"srcIndex":1401,"timestampMs":1586264143000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],"dstIndex":1160,"srcIndex":1401,"timestampMs":1586443674000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],"dstIndex":1165,"srcIndex":1401,"timestampMs":1586629689000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],"dstIndex":1166,"srcIndex":1401,"timestampMs":1586642724000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],"dstIndex":1168,"srcIndex":1401,"timestampMs":1586461703000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],"dstIndex":1169,"srcIndex":1401,"timestampMs":1586264058000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],"dstIndex":1171,"srcIndex":1401,"timestampMs":1586208446000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],"dstIndex":1172,"srcIndex":1401,"timestampMs":1586264565000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],"dstIndex":1173,"srcIndex":1401,"timestampMs":1586264365000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],"dstIndex":1175,"srcIndex":1401,"timestampMs":1586633972000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],"dstIndex":1176,"srcIndex":1401,"timestampMs":1586630527000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],"dstIndex":1177,"srcIndex":1401,"timestampMs":1586632841000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],"dstIndex":1178,"srcIndex":1401,"timestampMs":1586446829000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],"dstIndex":1179,"srcIndex":1401,"timestampMs":1586437704000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],"dstIndex":1181,"srcIndex":1401,"timestampMs":1586643749000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],"dstIndex":1184,"srcIndex":1401,"timestampMs":1586556200000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],"dstIndex":1185,"srcIndex":1401,"timestampMs":1586426157000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],"dstIndex":1186,"srcIndex":1401,"timestampMs":1586504576000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],"dstIndex":1190,"srcIndex":1401,"timestampMs":1586632115000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],"dstIndex":1191,"srcIndex":1401,"timestampMs":1586115022000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],"dstIndex":1192,"srcIndex":1401,"timestampMs":1586395769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],"dstIndex":1195,"srcIndex":1401,"timestampMs":1586428289000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],"dstIndex":1196,"srcIndex":1401,"timestampMs":1586635956000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],"dstIndex":1199,"srcIndex":1401,"timestampMs":1586566089000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],"dstIndex":1200,"srcIndex":1401,"timestampMs":1586637453000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],"dstIndex":1201,"srcIndex":1401,"timestampMs":1586209230000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],"dstIndex":1203,"srcIndex":1401,"timestampMs":1586619306000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],"dstIndex":1204,"srcIndex":1401,"timestampMs":1586635980000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],"dstIndex":1207,"srcIndex":1401,"timestampMs":1586440952000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],"dstIndex":1210,"srcIndex":1401,"timestampMs":1586425156000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],"dstIndex":1214,"srcIndex":1401,"timestampMs":1586633830000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],"dstIndex":1215,"srcIndex":1401,"timestampMs":1586631279000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],"dstIndex":1219,"srcIndex":1401,"timestampMs":1586439053000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],"dstIndex":1220,"srcIndex":1401,"timestampMs":1586645068000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],"dstIndex":1222,"srcIndex":1401,"timestampMs":1586461592000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],"dstIndex":1223,"srcIndex":1401,"timestampMs":1586426867000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],"dstIndex":1224,"srcIndex":1401,"timestampMs":1586659020000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],"dstIndex":1225,"srcIndex":1401,"timestampMs":1586462092000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],"dstIndex":1226,"srcIndex":1401,"timestampMs":1586445094000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],"dstIndex":1227,"srcIndex":1401,"timestampMs":1586659508000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],"dstIndex":1229,"srcIndex":1401,"timestampMs":1586461896000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],"dstIndex":1230,"srcIndex":1401,"timestampMs":1586640763000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],"dstIndex":1234,"srcIndex":1401,"timestampMs":1586442756000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],"dstIndex":1235,"srcIndex":1401,"timestampMs":1586656761000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],"dstIndex":1236,"srcIndex":1401,"timestampMs":1586639218000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],"dstIndex":1237,"srcIndex":1401,"timestampMs":1586431949000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],"dstIndex":1241,"srcIndex":1401,"timestampMs":1586425693000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],"dstIndex":1242,"srcIndex":1401,"timestampMs":1586646488000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],"dstIndex":1243,"srcIndex":1401,"timestampMs":1586657456000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],"dstIndex":1244,"srcIndex":1401,"timestampMs":1586109264000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],"dstIndex":1245,"srcIndex":1401,"timestampMs":1586395938000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],"dstIndex":1246,"srcIndex":1401,"timestampMs":1586443142000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],"dstIndex":1248,"srcIndex":1401,"timestampMs":1586612834000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],"dstIndex":1249,"srcIndex":1401,"timestampMs":1586443040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],"dstIndex":1251,"srcIndex":1401,"timestampMs":1586439553000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],"dstIndex":1252,"srcIndex":1401,"timestampMs":1586449851000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],"dstIndex":1254,"srcIndex":1401,"timestampMs":1586440769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],"dstIndex":1255,"srcIndex":1401,"timestampMs":1586638167000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],"dstIndex":1256,"srcIndex":1401,"timestampMs":1586442958000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],"dstIndex":1257,"srcIndex":1401,"timestampMs":1586443278000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],"dstIndex":1259,"srcIndex":1401,"timestampMs":1586108556000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],"dstIndex":1260,"srcIndex":1401,"timestampMs":1586632045000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],"dstIndex":1261,"srcIndex":1401,"timestampMs":1586644275000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],"dstIndex":1262,"srcIndex":1401,"timestampMs":1586439910000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],"dstIndex":1263,"srcIndex":1401,"timestampMs":1586635090000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],"dstIndex":1265,"srcIndex":1401,"timestampMs":1586761063000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],"dstIndex":1269,"srcIndex":1401,"timestampMs":1586425884000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],"dstIndex":1271,"srcIndex":1401,"timestampMs":1586208275000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],"dstIndex":1272,"srcIndex":1401,"timestampMs":1586641071000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],"dstIndex":1273,"srcIndex":1401,"timestampMs":1586446525000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],"dstIndex":1275,"srcIndex":1401,"timestampMs":1586607022000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],"dstIndex":1276,"srcIndex":1401,"timestampMs":1586457498000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],"dstIndex":1277,"srcIndex":1401,"timestampMs":1586656082000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],"dstIndex":1279,"srcIndex":1401,"timestampMs":1586639647000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],"dstIndex":1280,"srcIndex":1401,"timestampMs":1586396173000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],"dstIndex":1283,"srcIndex":1401,"timestampMs":1585184379000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],"dstIndex":1285,"srcIndex":1401,"timestampMs":1583846036000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],"dstIndex":1287,"srcIndex":1401,"timestampMs":1585184096000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],"dstIndex":1290,"srcIndex":1401,"timestampMs":1586119837000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],"dstIndex":1291,"srcIndex":1401,"timestampMs":1586119867000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],"dstIndex":1292,"srcIndex":1401,"timestampMs":1583841786000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],"dstIndex":1293,"srcIndex":1401,"timestampMs":1583855508000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],"dstIndex":1294,"srcIndex":1401,"timestampMs":1584736018000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],"dstIndex":1296,"srcIndex":1401,"timestampMs":1584727355000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],"dstIndex":1299,"srcIndex":1401,"timestampMs":1585132575000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],"dstIndex":1300,"srcIndex":1401,"timestampMs":1585128878000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],"dstIndex":1302,"srcIndex":1401,"timestampMs":1585126267000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],"dstIndex":1304,"srcIndex":1401,"timestampMs":1585126105000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],"dstIndex":1305,"srcIndex":1401,"timestampMs":1584722599000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],"dstIndex":1308,"srcIndex":1401,"timestampMs":1585142847000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],"dstIndex":1310,"srcIndex":1401,"timestampMs":1583707484000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],"dstIndex":1312,"srcIndex":1401,"timestampMs":1584468261000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],"dstIndex":1313,"srcIndex":1401,"timestampMs":1585184645000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],"dstIndex":1315,"srcIndex":1401,"timestampMs":1585134244000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],"dstIndex":1316,"srcIndex":1401,"timestampMs":1584727333000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","19"],"dstIndex":1323,"srcIndex":1401,"timestampMs":1586768126000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","2"],"dstIndex":1324,"srcIndex":1401,"timestampMs":1586269776000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","3"],"dstIndex":1330,"srcIndex":1401,"timestampMs":1586390052000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","4"],"dstIndex":1331,"srcIndex":1401,"timestampMs":1586390446000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","5"],"dstIndex":1332,"srcIndex":1401,"timestampMs":1586390871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","6"],"dstIndex":1333,"srcIndex":1401,"timestampMs":1586396494000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","8"],"dstIndex":1334,"srcIndex":1401,"timestampMs":1586435403000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","9"],"dstIndex":1335,"srcIndex":1401,"timestampMs":1586440155000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1357,"srcIndex":1401,"timestampMs":1586264552000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1358,"srcIndex":1401,"timestampMs":1586446688000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1359,"srcIndex":1401,"timestampMs":1586449916000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1360,"srcIndex":1401,"timestampMs":1586658580000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1364,"srcIndex":1401,"timestampMs":1586425681000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":1401,"timestampMs":1586103666000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1366,"srcIndex":1401,"timestampMs":1586104083000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","7","sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],"dstIndex":1391,"srcIndex":1401,"timestampMs":1586658808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1401,"timestampMs":1586787682000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],"dstIndex":1289,"srcIndex":1415,"timestampMs":1584727008000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],"dstIndex":1298,"srcIndex":1415,"timestampMs":1584733391000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],"dstIndex":1301,"srcIndex":1415,"timestampMs":1584729372000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","vntrp","6","sourcecred","github","PULL","aracred","website","16"],"dstIndex":1375,"srcIndex":1399,"timestampMs":1586987888000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],"dstIndex":215,"srcIndex":781,"timestampMs":1586666528000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],"dstIndex":262,"srcIndex":782,"timestampMs":1586706188000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],"dstIndex":263,"srcIndex":783,"timestampMs":1586709195000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],"dstIndex":483,"srcIndex":784,"timestampMs":1586710102000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],"dstIndex":577,"srcIndex":785,"timestampMs":1586709961000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],"dstIndex":254,"srcIndex":786,"timestampMs":1586921892000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],"dstIndex":268,"srcIndex":787,"timestampMs":1586930578000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],"dstIndex":283,"srcIndex":788,"timestampMs":1586920791000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],"dstIndex":293,"srcIndex":789,"timestampMs":1586921871000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],"dstIndex":296,"srcIndex":790,"timestampMs":1586920549000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],"dstIndex":298,"srcIndex":791,"timestampMs":1586839193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],"dstIndex":330,"srcIndex":792,"timestampMs":1586916947000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],"dstIndex":356,"srcIndex":793,"timestampMs":1586919065000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],"dstIndex":393,"srcIndex":794,"timestampMs":1586971104000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],"dstIndex":420,"srcIndex":795,"timestampMs":1586957209000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],"dstIndex":424,"srcIndex":796,"timestampMs":1586915756000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],"dstIndex":560,"srcIndex":797,"timestampMs":1586916992000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],"dstIndex":563,"srcIndex":798,"timestampMs":1586932748000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],"dstIndex":588,"srcIndex":799,"timestampMs":1586934527000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],"dstIndex":594,"srcIndex":800,"timestampMs":1587052319000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],"dstIndex":573,"srcIndex":801,"timestampMs":1587075097000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],"dstIndex":656,"srcIndex":802,"timestampMs":1586805309000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],"dstIndex":660,"srcIndex":803,"timestampMs":1586918718000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],"dstIndex":667,"srcIndex":804,"timestampMs":1586831849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],"dstIndex":678,"srcIndex":805,"timestampMs":1586977731000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],"dstIndex":679,"srcIndex":806,"timestampMs":1586921823000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],"dstIndex":691,"srcIndex":807,"timestampMs":1586960050000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],"dstIndex":690,"srcIndex":808,"timestampMs":1586933937000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],"dstIndex":733,"srcIndex":809,"timestampMs":1586832132000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],"dstIndex":719,"srcIndex":810,"timestampMs":1586958454000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],"dstIndex":224,"srcIndex":811,"timestampMs":1586730565000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],"dstIndex":218,"srcIndex":812,"timestampMs":1586643786000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],"dstIndex":233,"srcIndex":813,"timestampMs":1586664558000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],"dstIndex":251,"srcIndex":814,"timestampMs":1586566020000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],"dstIndex":253,"srcIndex":815,"timestampMs":1586710826000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],"dstIndex":260,"srcIndex":816,"timestampMs":1586727748000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],"dstIndex":241,"srcIndex":817,"timestampMs":1586570955000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],"dstIndex":285,"srcIndex":818,"timestampMs":1586662685000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],"dstIndex":291,"srcIndex":819,"timestampMs":1586127122000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],"dstIndex":295,"srcIndex":820,"timestampMs":1586658983000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],"dstIndex":299,"srcIndex":821,"timestampMs":1586566694000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],"dstIndex":302,"srcIndex":822,"timestampMs":1586656936000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],"dstIndex":303,"srcIndex":823,"timestampMs":1586797014000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],"dstIndex":325,"srcIndex":824,"timestampMs":1586727823000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],"dstIndex":331,"srcIndex":825,"timestampMs":1586103464000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],"dstIndex":310,"srcIndex":826,"timestampMs":1586633871000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],"dstIndex":368,"srcIndex":827,"timestampMs":1586647160000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],"dstIndex":373,"srcIndex":828,"timestampMs":1586660251000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],"dstIndex":382,"srcIndex":829,"timestampMs":1586649927000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],"dstIndex":394,"srcIndex":830,"timestampMs":1586855777000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],"dstIndex":402,"srcIndex":831,"timestampMs":1586571027000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],"dstIndex":412,"srcIndex":832,"timestampMs":1586644808000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],"dstIndex":413,"srcIndex":833,"timestampMs":1586650718000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],"dstIndex":429,"srcIndex":834,"timestampMs":1586103441000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],"dstIndex":431,"srcIndex":835,"timestampMs":1586568293000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],"dstIndex":433,"srcIndex":836,"timestampMs":1586646704000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],"dstIndex":436,"srcIndex":837,"timestampMs":1586663015000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],"dstIndex":458,"srcIndex":838,"timestampMs":1586639136000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],"dstIndex":474,"srcIndex":839,"timestampMs":1586663769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],"dstIndex":476,"srcIndex":840,"timestampMs":1586652307000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],"dstIndex":479,"srcIndex":841,"timestampMs":1586570353000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],"dstIndex":511,"srcIndex":842,"timestampMs":1586638395000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],"dstIndex":519,"srcIndex":843,"timestampMs":1586657067000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],"dstIndex":523,"srcIndex":844,"timestampMs":1586649206000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],"dstIndex":545,"srcIndex":845,"timestampMs":1586729040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],"dstIndex":548,"srcIndex":846,"timestampMs":1586567498000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],"dstIndex":554,"srcIndex":847,"timestampMs":1586855462000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],"dstIndex":532,"srcIndex":848,"timestampMs":1586568912000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],"dstIndex":533,"srcIndex":849,"timestampMs":1586640470000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],"dstIndex":538,"srcIndex":850,"timestampMs":1586111771000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],"dstIndex":556,"srcIndex":851,"timestampMs":1586569076000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],"dstIndex":559,"srcIndex":852,"timestampMs":1586648621000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],"dstIndex":601,"srcIndex":853,"timestampMs":1586111689000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],"dstIndex":606,"srcIndex":854,"timestampMs":1586651543000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],"dstIndex":627,"srcIndex":855,"timestampMs":1586661631000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],"dstIndex":628,"srcIndex":856,"timestampMs":1586739277000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],"dstIndex":620,"srcIndex":857,"timestampMs":1586644660000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],"dstIndex":623,"srcIndex":858,"timestampMs":1586792089000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],"dstIndex":642,"srcIndex":859,"timestampMs":1586645107000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],"dstIndex":657,"srcIndex":860,"timestampMs":1586656870000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],"dstIndex":668,"srcIndex":861,"timestampMs":1586790290000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],"dstIndex":649,"srcIndex":862,"timestampMs":1586571301000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],"dstIndex":672,"srcIndex":863,"timestampMs":1586565903000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],"dstIndex":677,"srcIndex":864,"timestampMs":1586633977000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],"dstIndex":683,"srcIndex":865,"timestampMs":1586645253000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],"dstIndex":700,"srcIndex":866,"timestampMs":1586567811000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],"dstIndex":701,"srcIndex":867,"timestampMs":1586664528000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],"dstIndex":689,"srcIndex":868,"timestampMs":1586645187000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],"dstIndex":711,"srcIndex":869,"timestampMs":1586874980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],"dstIndex":735,"srcIndex":870,"timestampMs":1586654110000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],"dstIndex":737,"srcIndex":871,"timestampMs":1586570850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjA3ZTBlNWYwMGUxOGUwMGExMjg5MmI0N2JkM2Y1Yjg3NDE4Mzc3ZDU="],"dstIndex":228,"srcIndex":872,"timestampMs":1584166244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],"dstIndex":212,"srcIndex":873,"timestampMs":1582978132000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],"dstIndex":213,"srcIndex":874,"timestampMs":1586104482000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyNDVhNDAwMmEzNWMyYWRjY2ZlZDFmNjhhNjc1YzMwYmE4NzFiYTU="],"dstIndex":214,"srcIndex":875,"timestampMs":1583453629000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjBlNDY4ODQzMTkxYWQzYTI0ZmY1YjgwM2IyZTM4OGExMmU4OGEyODk="],"dstIndex":235,"srcIndex":876,"timestampMs":1585678434000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],"dstIndex":249,"srcIndex":877,"timestampMs":1583619788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1YTgxMjdiYzU0MDJjNzIyNGJjNTkyZjg5MGE1YmQ3Zjc5M2M2YTU="],"dstIndex":250,"srcIndex":878,"timestampMs":1585354520000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],"dstIndex":258,"srcIndex":879,"timestampMs":1585275196000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjExZmNkMDlhMGNkZTA4YWYwOGI1YzVjOTUxZjU0YzE1MGNmNDdlYTE="],"dstIndex":240,"srcIndex":880,"timestampMs":1585246440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyMjJlNDliNDI2OWYxNWIyYzcxY2ZlNGI2MmIxMzMzYWJlZWE1ODE="],"dstIndex":242,"srcIndex":881,"timestampMs":1583367223000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyY2YwZjE2ZDQwNmYxNGMyNTk3YWJjMTMwYzRkMmJmYTk5MjdmMzI="],"dstIndex":243,"srcIndex":882,"timestampMs":1585807902000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyZGRkNGUzNTYwN2MwMTg0Yjg5OGM4OThlMjZlNDVjNjAxNzY0MmQ="],"dstIndex":244,"srcIndex":883,"timestampMs":1584727971000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzNjM0NDE0MzM3ZTczMGZiY2I0MDNlMjY1N2E4MDA3MzQ3ZGRkOGQ="],"dstIndex":247,"srcIndex":884,"timestampMs":1585268012000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzZmM1MGQyMmUyMzUzY2YyYmIzODk0OGNhZTRmYjVmYjU5MWNlNmM="],"dstIndex":248,"srcIndex":885,"timestampMs":1584490521000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFhNzkyOTQ2MmZjMzU0NDg0MDhmMGQ4NTRhNmM4Yzg5OGMyZGI5NGY="],"dstIndex":265,"srcIndex":886,"timestampMs":1584425424000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],"dstIndex":266,"srcIndex":887,"timestampMs":1583545099000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFjYWMxNWVjYWU1ZTYzNmZkNWQwNDlmYzU5OTNjY2QxMTMxMjZlNDE="],"dstIndex":267,"srcIndex":888,"timestampMs":1584404096000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFkYzRhMmMyMzUyNTA0M2E3YjZlMzJhNzk4MzdjYjZhNWE2MmZkOTc="],"dstIndex":269,"srcIndex":889,"timestampMs":1584987191000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFlZWQzOGM0Y2ViZDYzYWI2ZmM5NTM3NTY0YTUzMDRhODcwY2FhMGM="],"dstIndex":273,"srcIndex":890,"timestampMs":1585872826000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFmMzUwZWFkMjJjYjUwMzkzMmVjMzZiOWQyMWI3MzVlYjk3ZWIyNTY="],"dstIndex":274,"srcIndex":891,"timestampMs":1584231333000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI1YzE2YmI4NTgwMTI3OTE5NjAxOGI0NGVjMGRiMDgzNGZhZGM0YTI="],"dstIndex":284,"srcIndex":892,"timestampMs":1584079976000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI3YjJiZjNkN2RhODNlMDQyOTVhYTFjMjI5N2U1MGNlODE1N2Y0MzU="],"dstIndex":287,"srcIndex":893,"timestampMs":1584555406000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI4YjBlM2YyZDhmZDQyNTY5ZWI4MDNkMTA0MzVhYThjMGVkZjI4ZjQ="],"dstIndex":288,"srcIndex":894,"timestampMs":1585159980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],"dstIndex":275,"srcIndex":895,"timestampMs":1582941733000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],"dstIndex":277,"srcIndex":896,"timestampMs":1586104041000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],"dstIndex":280,"srcIndex":897,"timestampMs":1581915151000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],"dstIndex":281,"srcIndex":898,"timestampMs":1586106320000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJhMTIwNGI0NGY0NGQ2ZDkzY2Y5NTJlMTgwNGFlZjI1ZmZiZGQ3OGY="],"dstIndex":290,"srcIndex":899,"timestampMs":1585365876000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJkNDQxOTFhOTk2OTUxY2NiZWQwMDA5MjgwODk5NjE0ZDYzMTc0Yzk="],"dstIndex":301,"srcIndex":900,"timestampMs":1585276073000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmNDJhMmEzOTE2ZmU2ZWRlOTdmMWZhYzlhZGMxODk3ZmNiYWEyYmU="],"dstIndex":304,"srcIndex":901,"timestampMs":1585397520000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmYWQ5YWFiNjg5NzIwMWU2YmMzNTNiOTc0NmMwM2QxZTcyOGQ0MzM="],"dstIndex":305,"srcIndex":902,"timestampMs":1584274368000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM0NzIzOTYxMTk5NTY1OTM3NDkzODM0MDcxNjY1Yjg3MWE2MzJkNWQ="],"dstIndex":319,"srcIndex":903,"timestampMs":1584382440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM1YmYwODI5YzA2OGFhMjBkZTUxNDY2ZWExMThmNzU0NzcwN2RlMDA="],"dstIndex":320,"srcIndex":904,"timestampMs":1585894360000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2NDA2OGVjOGRiODZiMzc4ZDYzMGY1OTFkYTNhMDJkZTg3MDg3OTg="],"dstIndex":321,"srcIndex":905,"timestampMs":1585095460000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],"dstIndex":322,"srcIndex":906,"timestampMs":1581914566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":324,"srcIndex":907,"timestampMs":1581914856000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],"dstIndex":326,"srcIndex":908,"timestampMs":1581911765000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],"dstIndex":327,"srcIndex":909,"timestampMs":1586106153000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MWIzMmJmZGI1YWUzN2QyY2U0MmQzMjMxOWZiYWRkZTcyNjYzZjM="],"dstIndex":328,"srcIndex":910,"timestampMs":1583604631000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MmU2MDFkMzE3OTUwNmRmZTdlYzBhZDIwY2Q1ZjY3OTY5NmU2NmU="],"dstIndex":329,"srcIndex":911,"timestampMs":1583712856000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YjBhOTAyYzFjMTc1MTJhNTM2MzgwNTAzYTUwNmZjM2NhNjE1YmI="],"dstIndex":332,"srcIndex":912,"timestampMs":1585505534000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YzZkYWFhNWZjYTYzMDViOTA4Y2RkMjg4MTExMDdlYmE2YmNiZTM="],"dstIndex":333,"srcIndex":913,"timestampMs":1584058539000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwMDE0YzExODQxYzlhNjA1Y2M5NGQ1MTdlY2U2Yjg2N2FmZDhjZWY="],"dstIndex":306,"srcIndex":914,"timestampMs":1583172648000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwNzU4ZDA0YWE0ZGE5N2ZjMGFjZWQxZmEyMmNiZGVlNGE4MmM3OTI="],"dstIndex":307,"srcIndex":915,"timestampMs":1584857389000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwOWE4OTU4NmRhNWUyZDQ0YjQ4YTYwN2M5MzM0YWVmNmY2ZGIzZmI="],"dstIndex":308,"srcIndex":916,"timestampMs":1583928647000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxMWJmMjZhYTUyNjhhMDY3YjBiZmM4NzA4YTkyMmQyZmQzZDBhODE="],"dstIndex":312,"srcIndex":917,"timestampMs":1582959644000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxN2ZmYTE0NzFhMDE3OTAwN2I4N2Y5M2FhYzIyMjM2NjY0NDNkNDU="],"dstIndex":314,"srcIndex":918,"timestampMs":1584965374000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],"dstIndex":337,"srcIndex":919,"timestampMs":1583124213000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNDg3MWMwOWI2NzQ5OGUzMTU3NWI4YWFhOWMwOTQ0M2QxNDJhMDM="],"dstIndex":338,"srcIndex":920,"timestampMs":1584511968000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],"dstIndex":339,"srcIndex":921,"timestampMs":1586105522000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiOGU0ZjU0ODQ1Mzg4ODUxMjkzYjI2MDUzZjRkZjY1YjRkYzk4ZDE="],"dstIndex":340,"srcIndex":922,"timestampMs":1583280857000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiYzk5MzQ4MzRiOGE2NTI5MTQzOWNiYmEyZGFmMDYxNDQ4ZTMwZmU="],"dstIndex":341,"srcIndex":923,"timestampMs":1584101474000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNlNWUxNDQ1N2ZhMTQzNDI1ZDI2NGE0ZmE5NDE1OTFkMTk3MzBjZTM="],"dstIndex":347,"srcIndex":924,"timestampMs":1583086481000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNmNDdmMDc3MjNiOTdmMDMxMWYzMmI3OGRhOTkzNThkMmM2YWZmYjQ="],"dstIndex":349,"srcIndex":925,"timestampMs":1583259010000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Y2YwZmJiYTE4YmYzOTJhNDQ5NjJmYWVkMWUxMzAwZWQ2ZmE0NTk="],"dstIndex":360,"srcIndex":926,"timestampMs":1585548726000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Yzg0NDQ3NWM1ZTJiZWI1YWNkZWZjN2U0Y2Q1NGU5MGQyZDg0ZTI="],"dstIndex":359,"srcIndex":927,"timestampMs":1585700008000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ2MzllYzhkYmExMmU4YzdkM2IwYmY1ODliOGM4YTA5YzUyMmFlNDc="],"dstIndex":365,"srcIndex":928,"timestampMs":1585484037000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ4ZTViNDQ2N2M2MTA3MDQwYzEwN2Q1NWJjMmZiZTA3YTU3ZWEzYTA="],"dstIndex":367,"srcIndex":929,"timestampMs":1585311128000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],"dstIndex":351,"srcIndex":930,"timestampMs":1583107086000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],"dstIndex":352,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxOWQzOWQ4N2ViMzE5NjVhOGY1Nzc1MDc1Y2I4MGJlNmE1N2FiZDY="],"dstIndex":353,"srcIndex":932,"timestampMs":1585440813000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],"dstIndex":354,"srcIndex":933,"timestampMs":1586112503000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQzMjA0MmY2Zjk2NWJiMTEzYWQ1MDk1MGNmZGJiODJjNDRmMGRjNTk="],"dstIndex":355,"srcIndex":934,"timestampMs":1583129436000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRhOTA3MzQ4MzJhZTRhZDMyOGZjMDYyNzEyZTJkZWNhODhkN2RjYzQ="],"dstIndex":370,"srcIndex":935,"timestampMs":1585224759000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRiNGM5ZWE5NzA1NDY1ZDM5ZjMzYjM5ZWEzOTgxOWM5Yzc3YWE3OGI="],"dstIndex":372,"srcIndex":936,"timestampMs":1585980739000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],"dstIndex":374,"srcIndex":937,"timestampMs":1583096048000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],"dstIndex":377,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU1NGM5NjQzOGZkYmVlMjAzMWI4YjVhYzE2YWEyZDZkYjZhN2Y0MGY="],"dstIndex":388,"srcIndex":939,"timestampMs":1584209897000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU2MTcyYjYwODc0MDBmYTgxYzEzZjM5ZjM3YjIzZWMxMWRlM2M5YjI="],"dstIndex":389,"srcIndex":940,"timestampMs":1585937519000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],"dstIndex":391,"srcIndex":941,"timestampMs":1586104299000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3ODU0NGQwNTU3NjE0YzAwNzgwMDg5ZmE5ZjgzNDM5NTBmOTc3ZmM="],"dstIndex":392,"srcIndex":942,"timestampMs":1585613634000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwOWQ4YzAzYjFhNjcxMjlhM2U5ODA3M2RkMjRmOTM3MjNjZGZlNDE="],"dstIndex":379,"srcIndex":943,"timestampMs":1585656841000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],"dstIndex":380,"srcIndex":944,"timestampMs":1586109721000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUxMzA4NjIxZWMyODQzMzUwODUyZmQzMWY4YzBhYTA4ZDZkNmE4MDk="],"dstIndex":381,"srcIndex":945,"timestampMs":1585591899000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVhZmI0ZTA4MTcwYzFiZDJlOWY1ZmI0ZGQ0MmM2ZWY1ZTJkMjM4Nzg="],"dstIndex":396,"srcIndex":946,"timestampMs":1585116577000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjViODVhNzQwNTQ4OWY3MjBlZDBiOWNiNTE1MGMyNjE5ZDQ1YzllOWQ="],"dstIndex":397,"srcIndex":947,"timestampMs":1583820607000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjNjIxZWU0YzY0NDcxM2EyNjI3YWZiZmVkNzQ1NDgyZmU1NTI1ZWY="],"dstIndex":398,"srcIndex":948,"timestampMs":1584619902000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjOGU2OTVhZDM0MGU2NWU4NTg2MmRjODIwMmQxN2U3M2Q5NWJjM2U="],"dstIndex":399,"srcIndex":949,"timestampMs":1584943893000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],"dstIndex":416,"srcIndex":950,"timestampMs":1583122040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1NTI0MDk3ZWQ1ZGUzYTgxNWU5ODliZDQyMGUzODE3N2ZlNzBiY2E="],"dstIndex":417,"srcIndex":951,"timestampMs":1584187884000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1ZDJjYTM0M2M1MTAyMDQ3ODA5NGJhODdiNWRiNGFmNjQ2NDc0MWE="],"dstIndex":418,"srcIndex":952,"timestampMs":1584123231000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY3ZDQ2MjI5NDg5MzA5MDM1Yjk2ODM5MWU2ZDE0NjExZWJkNWMzZmY="],"dstIndex":422,"srcIndex":953,"timestampMs":1585008772000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY5ZDFmYjc5Yjk2ODBmN2VjNWU4NTU0ZjJhOGMwZjgxZDc0ZDlhOWM="],"dstIndex":425,"srcIndex":954,"timestampMs":1584339043000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjYzNmVjNmExNjA2NGM4YzMzZWI0NzYzMzc1ZDUzYWM1ZDhiZDFhMTA="],"dstIndex":415,"srcIndex":955,"timestampMs":1583669536000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZhOGJmY2EwYzkzNmYzMDRjYzlhMmEzMzk5Njc2YmU0NmFlYTk5NjA="],"dstIndex":426,"srcIndex":956,"timestampMs":1584252719000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZiOTY5OThlN2MyZjhjZTUyZGMwOWViYzllYTUyNGQwN2RlYmUzOGU="],"dstIndex":427,"srcIndex":957,"timestampMs":1584360709000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZkNTFlZTgzNmUxMGU5ZDdiMzgwMDZmNWU0OTY2NTVhZTE4YWQzNjg="],"dstIndex":432,"srcIndex":958,"timestampMs":1585915944000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],"dstIndex":442,"srcIndex":959,"timestampMs":1585275681000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc4NjAxMzc2NTIyYzMyOWMwOTQwNzU0MDIwZmY0NjU0ZmZlOTM3Yjg="],"dstIndex":448,"srcIndex":960,"timestampMs":1585462336000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc5MzFjZjIwYjUxNDZiY2E2OGU1MWQyNmNkZWJhZGU5YTFkM2E2NjI="],"dstIndex":450,"srcIndex":961,"timestampMs":1583755944000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjcxZTA4NDY0YTY1NGIzN2IwNWZlNTM0OTY0OWEwM2Y0NTc5MzNmYTE="],"dstIndex":439,"srcIndex":962,"timestampMs":1584663156000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiNmQ2MTY4N2U1N2QxNWE0NWQxOTViMWVkYjU2NzQ1MWEzMGRiMjk="],"dstIndex":455,"srcIndex":963,"timestampMs":1584598257000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],"dstIndex":456,"srcIndex":964,"timestampMs":1586106389000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkMWY2ZTJkMTNhYjQ2NzcxOWYyODc4MDJiMTZlNzk5ZGVlYjVlMjY="],"dstIndex":459,"srcIndex":965,"timestampMs":1585332629000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkYzQ1MTRjZDQxNWNjOTI2ODI3ZmUwMmNiMjg5MWI4ZDZiODBlNWQ="],"dstIndex":461,"srcIndex":966,"timestampMs":1583799279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],"dstIndex":462,"srcIndex":967,"timestampMs":1581898623000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdmZjc3ODI0ODliNzg5NDE0OWNjNWYyMTFkOWRkYWZjZjg0OTE4ZTk="],"dstIndex":466,"srcIndex":968,"timestampMs":1583496697000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],"dstIndex":472,"srcIndex":969,"timestampMs":1583106975000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg1YjZlOGNjYTJkNmJjNTcwOTQ0OTYwNWM4YWM2NDVmZTc0Zjc4ZDU="],"dstIndex":473,"srcIndex":970,"timestampMs":1585829522000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg2MTllZTI0NTJlN2JmMTA5MTY5MDE3YWNjOTY4YmJhM2U2ZTEyOWQ="],"dstIndex":475,"srcIndex":971,"timestampMs":1584706303000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],"dstIndex":477,"srcIndex":972,"timestampMs":1583542889000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YTE1YjU3NzJkMWRjMjE3MzcxODFkN2RkYTI2Njk1YTBkZmVjY2E="],"dstIndex":480,"srcIndex":973,"timestampMs":1585375849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YjMzN2JlZjI5NmRmMTBhOTRjM2IzOGNlMWUyZWY0Mzk2ODg2ZDU="],"dstIndex":481,"srcIndex":974,"timestampMs":1583431778000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],"dstIndex":467,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],"dstIndex":468,"srcIndex":976,"timestampMs":1583014162000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxN2NmODk0MGNiODhiYTc5MGM2MDIxY2U1NGJjYjAxOGFhMGNlYjY="],"dstIndex":469,"srcIndex":977,"timestampMs":1583540024000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxYTY3ZjQ4MTIwNDQ5Mjk0ZDNhYjk0Y2M3Njc3NTVlMGJmMzc4NGU="],"dstIndex":470,"srcIndex":978,"timestampMs":1586023930000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgyNzVkMWI1ZjNhNzc0MjY0ZDU4MzNjMjNkODk1ODM0Mjk0MDA5MmY="],"dstIndex":471,"srcIndex":979,"timestampMs":1585570245000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkOTYwZjA0MTVlOGNlOGE0NWQ3MDA1YzRlZTM5OWRlNjcyMTQ0ZDQ="],"dstIndex":490,"srcIndex":980,"timestampMs":1583410286000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkYTMyYmIyNDM2MjE5ZTNhNTU2MzFlNDI2YTcxZDNkNDVkMjdjMzY="],"dstIndex":491,"srcIndex":981,"timestampMs":1585073567000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":493,"srcIndex":982,"timestampMs":1581902687000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],"dstIndex":495,"srcIndex":983,"timestampMs":1582941505000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk0ZTUxZDlhODNjZDY3YjRhZDgyYzY1MjkyMTJlNzJhYWM4NGFmZTc="],"dstIndex":506,"srcIndex":984,"timestampMs":1583014460000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk1ZDU4ODRiMTJhNWE1ZjFkMTg1NTIyNzdlMzc1OTdmYjYwNDgyOTc="],"dstIndex":507,"srcIndex":985,"timestampMs":1585289369000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk2MjBmYjhiMDM4NjE2MGUzNjRlMzhkNjNhZDNmZWRlNGExODJjZTM="],"dstIndex":508,"srcIndex":986,"timestampMs":1584814190000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk3OGYwNTJiNjNhYTIwOWVkODEwN2RhZDcxYzU5YTQ0NjQzZTc0YmE="],"dstIndex":512,"srcIndex":987,"timestampMs":1586002264000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk4Zjc2YzRmYTkzNGEzZTA4ZGM0YWJiOGMxOTY5N2M3ZWQxZGE4MWM="],"dstIndex":514,"srcIndex":988,"timestampMs":1584015081000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjkzNmNkMjJmZTE1OWJmZDdmOGJlZDUzOTc4M2Y1MmM3NjhmMjBhOWY="],"dstIndex":504,"srcIndex":989,"timestampMs":1584901288000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhNWI0ODllMWJiY2MzMDZjZTRjNjM2MmFhNWFhZGZmNjBlNmEyN2Y="],"dstIndex":515,"srcIndex":990,"timestampMs":1585851193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhODY2NDI0Zjg0YjQ2OTc4M2RmZTU1OWE1MTBmZmM5M2UwMGQ2NGI="],"dstIndex":516,"srcIndex":991,"timestampMs":1585051794000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhYTBlY2Q2ZjUzN2MwZjNkNWY2ZjIwMGM3YzU0NDhkZGMyOGM5ZGQ="],"dstIndex":517,"srcIndex":992,"timestampMs":1583864016000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkMGNhY2YyOWVlNWY2NjY4NDI2YzBkZDljY2ExMmFkN2FmOTA2YWE="],"dstIndex":520,"srcIndex":993,"timestampMs":1583561475000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkODU2MGY3YTE3MGNjMmMwOTM3YmE3OTgwZGJjYjQ2NmFkMzE0MGY="],"dstIndex":521,"srcIndex":994,"timestampMs":1584922566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjllZTZkMWIzYjBkN2IwNmMzYWJlYjdiNDk2ZTgzMDY4M2M1NGY2ZDQ="],"dstIndex":522,"srcIndex":995,"timestampMs":1584836115000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],"dstIndex":541,"srcIndex":996,"timestampMs":1586103659000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],"dstIndex":543,"srcIndex":997,"timestampMs":1581900781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE2ODUzYTgzOWIxMTAxYjA3N2UzYjgwYzMxMDZkYTAxYmUyODA3ZWE="],"dstIndex":546,"srcIndex":998,"timestampMs":1584749757000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],"dstIndex":549,"srcIndex":999,"timestampMs":1583124366000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":552,"srcIndex":1000,"timestampMs":1582959276000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE5OTlkNmJkMzVkZjE5OGJhYjYyNTI0MDQzMjVkN2E5NDQ5ODM0MTA="],"dstIndex":555,"srcIndex":1001,"timestampMs":1583691175000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEwZmI5YjgyMmJhYWI5ZTBmY2U4NDMzYmUzZGU3ZDQyM2UxYjRkZDY="],"dstIndex":530,"srcIndex":1002,"timestampMs":1583064673000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyNTQ3ZWI3ZDE4MzVlMDUwYTg5NzE3MmI1NjNjY2I2OWI3Njk3MTE="],"dstIndex":534,"srcIndex":1003,"timestampMs":1584684556000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyZmQ3ZTA3Njc5NWM2MmEwNzUwMWQ1ZmI3MWMwMzk5OWNjNGIxNDU="],"dstIndex":535,"srcIndex":1004,"timestampMs":1583842226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEzN2E0ODI1NmQ5OWE2M2ZjZjBhNjc4ZWJiYjM0Y2NhMGZkOTVmMjM="],"dstIndex":537,"srcIndex":1005,"timestampMs":1585743137000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFlNjU2YTFhOTllOWE4Y2MyMjdjMTg3MTU0MTIzNTcxZDlkMTY4NzI="],"dstIndex":561,"srcIndex":1006,"timestampMs":1583107978000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],"dstIndex":564,"srcIndex":1007,"timestampMs":1586105574000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI0Mzk0MjEzMzAwZmY0ZDcyZWJhY2E3YzYzY2Y5MTlkZjMwNmVhZDM="],"dstIndex":576,"srcIndex":1008,"timestampMs":1583096222000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1YWQ1ZWVhNDAxYjRmNDE1YjlkYTQ0NjE4N2I4OTNhN2NlZWUxYjU="],"dstIndex":581,"srcIndex":1009,"timestampMs":1585030166000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1ZGYzYzhjZDg1Y2JlNDM2MDZmMjA1MmYwMDYzMWRiZmNjYTQyZDk="],"dstIndex":582,"srcIndex":1010,"timestampMs":1585764755000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2Mzg4ZGI1ZWI2YTZmZWQ1NmViYTY2MWRiMmI3NjFjY2RkZmQ2ZmM="],"dstIndex":584,"srcIndex":1011,"timestampMs":1583993566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2NzA1NzRiZDJiY2YxZTBhNzFjMzZiOTQ0N2IwZDVmZmUyMmI5YWE="],"dstIndex":585,"srcIndex":1012,"timestampMs":1583972111000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],"dstIndex":586,"srcIndex":1013,"timestampMs":1583124346000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],"dstIndex":587,"srcIndex":1014,"timestampMs":1586106281000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4MzE5ZDM2MTZjN2Q1ZTZjMmFmODA4N2VhNjNlOWZhYjFhNzNjMDI="],"dstIndex":590,"srcIndex":1015,"timestampMs":1583619966000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NDJlZDNlYWY2ODc1MTNhMGQ5MGVhZmRmYjBhOWVjNmZjNTg4MmU="],"dstIndex":591,"srcIndex":1016,"timestampMs":1583302409000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NWMwYjVhYjk4MzU3YzZkYzNhZjY5Mjk3ZTZhNzk1ODUxYzg5ZjQ="],"dstIndex":593,"srcIndex":1017,"timestampMs":1581903422000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],"dstIndex":595,"srcIndex":1018,"timestampMs":1585361688000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI5MzA5ZTRkNDQyODlhZjgzNDFmNDMxMDNiN2JlMTk1ZGY1OTk4YjA="],"dstIndex":596,"srcIndex":1019,"timestampMs":1583778483000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIwMzhmMWNhOWY5YjZhNWE1NDkzNWMxYTczMGQyZTMyZjgyMjBjZTc="],"dstIndex":565,"srcIndex":1020,"timestampMs":1583583119000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIxZTI0MTg1YzU2N2M0ZjlhNjA5NTk1NTllNmZmMWFjN2RiYjYyNzk="],"dstIndex":567,"srcIndex":1021,"timestampMs":1583043139000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],"dstIndex":571,"srcIndex":1022,"timestampMs":1586104090000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzZjY2N2M3NDZkNTRmZDFlN2VmNDFkNGU5MTE4NmZmNzA1Y2IwMWE="],"dstIndex":574,"srcIndex":1023,"timestampMs":1583237458000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhMDhmMjFmMzhmZWYyNWU2NWEwMDZlNGFmMDA1OTFmNjIzY2JhODg="],"dstIndex":597,"srcIndex":1024,"timestampMs":1583194441000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhNjkzZjVmMTE2Y2YxOWQ5YThiZjFiZjU1YTRlYzhjNmMxOTI5Yjg="],"dstIndex":598,"srcIndex":1025,"timestampMs":1583215867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":603,"srcIndex":1026,"timestampMs":1581914667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiYzU0ZTQ5NDcxOTBkYThjMzdkNzY3ZTAwNDMzOWI2MmZiMzRhYWM="],"dstIndex":602,"srcIndex":1027,"timestampMs":1585527211000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":607,"srcIndex":1028,"timestampMs":1581903056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkZDFkOTUwOTVmYzk5MTg2NzU0NTAyYzk2YzFlY2JmZjIxNmZiMTQ="],"dstIndex":608,"srcIndex":1029,"timestampMs":1583734323000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJmZDMyMWE1YzM4NGRjN2ZhYjk5MDYyYmNjMzQ5MTcwNTMwM2ExNzY="],"dstIndex":612,"srcIndex":1030,"timestampMs":1586105832000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0NjFiYjQwMzY2YmU2MTI0Y2M4ZTA5YWYyNTc0MWM1ZTY1YjFhNmE="],"dstIndex":624,"srcIndex":1031,"timestampMs":1583950431000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0YWUyYjk1ZWRkMjIzYTJiMzI2OWY0OTEzYzVhMjM3ZTc1NTcxOTQ="],"dstIndex":626,"srcIndex":1032,"timestampMs":1583345470000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1MTlhMDkxNmYyMzg2NmM5OWMwYzc2YmFkMzNkZWMwOWM0YTEwNTI="],"dstIndex":629,"srcIndex":1033,"timestampMs":1586045554000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1ZWVhYzk0ODU2OWEwNjYyMjc0MGQwYjkzNDBjNjIyZGRiNDY5ZDM="],"dstIndex":631,"srcIndex":1034,"timestampMs":1584771018000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM2MWJjNzkxODMzNzRlN2UzN2E4NDU2ZmY0N2Y2NjJhMmJjMjFiYWY="],"dstIndex":632,"srcIndex":1035,"timestampMs":1585959190000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM3YWNlZjhhNTY2NGQzZGQ1NzA1OWU4Y2M0NDdjNGYxZGJlMjY5ZGI="],"dstIndex":634,"srcIndex":1036,"timestampMs":1584144938000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":636,"srcIndex":1037,"timestampMs":1582941407000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],"dstIndex":613,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMzNzgxOGRjNTRkYjMwMmMxYmIyYmZlOTkzMTIwODRjYjY0NTIyNjM="],"dstIndex":622,"srcIndex":1039,"timestampMs":1583125241000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNjNGU0ZmY5NGIyZmU3OGQ4NzI3OTYzYjQyYmMxYzMzYmZkMmU5MzI="],"dstIndex":640,"srcIndex":1040,"timestampMs":1585786422000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmMzU5ZjU2YTllN2Q5ZTM4MGE3MjlmZTY0ZjBmZDllMDY4NTNjMjE="],"dstIndex":644,"srcIndex":1041,"timestampMs":1583647930000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmNDE2MzYzNzlhY2Q1ZmI5ZTI3YWY2MjcyN2ZkZjY0YTExMWQ5NTk="],"dstIndex":645,"srcIndex":1042,"timestampMs":1583388676000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ0NTU1NTU0ZDM0N2IyMzg1YWM5NmE1MzBmNTYyODQ5MWMyYzcyNGM="],"dstIndex":655,"srcIndex":1043,"timestampMs":1585202969000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ1OTNiMTI2YWY1Y2NkZTMyZmU2MTBmYmMzOTlmOTIzM2M0ZmNkY2Y="],"dstIndex":659,"srcIndex":1044,"timestampMs":1583021626000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ3ZTU3NjNjMzc1ODIwNjdkOTMwZTUzNzE4MjczZWVmNjc5OTdkYjc="],"dstIndex":663,"srcIndex":1045,"timestampMs":1583885686000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ4MDM0YzFhOTk3YTZmMzc2MmViNjRhYmVmZDM5ODNjYTVjMTdiMjc="],"dstIndex":664,"srcIndex":1046,"timestampMs":1584317721000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ5YjQwZTA3MWMyZjIxNmI4ZmI0Y2ViY2U3ODhlYzFiZjg5MmFjN2M="],"dstIndex":669,"srcIndex":1047,"timestampMs":1584792698000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],"dstIndex":647,"srcIndex":1048,"timestampMs":1586103656000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQyMTBkNmYzODc4NjBiNDczNjE5MzYyNDEyNWVjNWUxYjhmNWM4OGE="],"dstIndex":650,"srcIndex":1049,"timestampMs":1584447107000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],"dstIndex":680,"srcIndex":1050,"timestampMs":1581898638000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmMzkwNTNmMzdiZjkzODIzY2Q0MzY0YjgxOWNhMTI4OWU0NDgxYjE="],"dstIndex":682,"srcIndex":1051,"timestampMs":1585181592000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmOWY3NDIzZjBlMThhNTc4MzUzMjRiNDU5ZmUyNDNkM2YzZTU1YWI="],"dstIndex":684,"srcIndex":1052,"timestampMs":1586088576000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],"dstIndex":694,"srcIndex":1053,"timestampMs":1583124164000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU2M2VjNzBjM2I3NWRlNTM5ZTg2ZmFmNzdjOWU0NGY4Mzc1M2NiMWY="],"dstIndex":695,"srcIndex":1054,"timestampMs":1585635193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwMGQyZmJjODk1OWExYThkZDY5MDc2MjdjMGYxMzczMWRkNWI3ZTQ="],"dstIndex":685,"srcIndex":1055,"timestampMs":1583545284000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],"dstIndex":686,"srcIndex":1056,"timestampMs":1582941750000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],"dstIndex":702,"srcIndex":1057,"timestampMs":1583592448000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmViZmNhMjMwOTg3NzI2ZmI2ZDBjNzRjZGJhMWU3MzQ2YjVkMDgzNDU="],"dstIndex":703,"srcIndex":1058,"timestampMs":1583626507000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjNTQzNmI2OGVjMzZjZWE0MWY5MjNhZTJkOTU4NDFiN2RiZTY3OGE="],"dstIndex":704,"srcIndex":1059,"timestampMs":1585721531000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjYTFjOGU0ZmI5ODk3Zjg2ZTcxOTJmMTc0MWQwMDUwOTcwN2E0MmQ="],"dstIndex":705,"srcIndex":1060,"timestampMs":1583151030000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],"dstIndex":709,"srcIndex":1061,"timestampMs":1585365677000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVmMWE0ZTFkM2JmNzBmOWRhY2NlYmRmMzAyOGVhOGY0NzZjMjY4OTk="],"dstIndex":713,"srcIndex":1062,"timestampMs":1583518372000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY2YTg4YjY5NzI4ZmEyY2JjOTMwNGE5ZDNhNjE5M2FmYTlhY2ExN2M="],"dstIndex":727,"srcIndex":1063,"timestampMs":1585419164000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ODY2MGNlMDkxMzJkNjEyN2FiOTYwYTBmZGI5ZjE5ZjJiNzY4OTM="],"dstIndex":729,"srcIndex":1064,"timestampMs":1584036899000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3OTI5NGIxNGU5MDBjYTkyN2IzZTllNWNmNTE5NzI4MTRjZDJjNTA="],"dstIndex":730,"srcIndex":1065,"timestampMs":1583323781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ZWNkYzY2MTdjZTc3NTc0Njc2NjU0YTg0ZjU4MzEzYWQ5Zjg0YTg="],"dstIndex":731,"srcIndex":1066,"timestampMs":1583907011000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY4MTllYzUyMGU3NTRjNGFkYjQ2ZDEzZDAxMjZmYTQ4ZjAzYjBkYWM="],"dstIndex":732,"srcIndex":1067,"timestampMs":1585361881000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY5NmJjM2Y2NjEwNmVkNDM0MWQ2NzRiNWEzN2ExZmNlODAzNWM5MjI="],"dstIndex":734,"srcIndex":1068,"timestampMs":1583475056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYxYjFhMzQ4NTE0YThkODg3NTBjMjc3NGEzNzlhMDBiODVlYTA4MTA="],"dstIndex":718,"srcIndex":1069,"timestampMs":1584295996000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYzZDA3NmY2Nzc5N2Y2YzM0OTFlMDQ2YTVkY2RjZTAzNzI4OTBkZTU="],"dstIndex":722,"srcIndex":1070,"timestampMs":1585138236000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmZlMzNkYWI3NGEwNWY0M2QxZTI0MDQ0ZGM0NDEzZmYwZTcyYWFkNTA="],"dstIndex":742,"srcIndex":1071,"timestampMs":1584641608000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],"dstIndex":223,"srcIndex":1072,"timestampMs":1586425053000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],"dstIndex":225,"srcIndex":1073,"timestampMs":1586114858000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],"dstIndex":226,"srcIndex":1074,"timestampMs":1586658939000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],"dstIndex":229,"srcIndex":1075,"timestampMs":1586425366000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],"dstIndex":210,"srcIndex":1076,"timestampMs":1586377189000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],"dstIndex":211,"srcIndex":1077,"timestampMs":1586109857000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAyZjRkMzYyM2FlNGU4OWZhNjIzMjQ3N2Q5N2ZlMzJiMjdhYWU3YzU="],"dstIndex":216,"srcIndex":1078,"timestampMs":1586283283000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],"dstIndex":219,"srcIndex":1079,"timestampMs":1586439223000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzNjA0YTdkOGY5YTZmNDg4Zjc5OTAzMDllNzAwNjZhMTI2MDQ4M2Q="],"dstIndex":220,"srcIndex":1080,"timestampMs":1586434473000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzODhmYjAyMTlhNzQ2MGU2NzI2YjM0ODM1YzY3MDk4NmJlNTQwNmM="],"dstIndex":221,"srcIndex":1081,"timestampMs":1586757849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],"dstIndex":222,"srcIndex":1082,"timestampMs":1586430244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],"dstIndex":230,"srcIndex":1083,"timestampMs":1586430128000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBiMzUxNDEyY2ZhOTJjOGVkYWJlYTE0NDlkYTE2YTdhMjEyOGM4MWY="],"dstIndex":231,"srcIndex":1084,"timestampMs":1586822727000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],"dstIndex":234,"srcIndex":1085,"timestampMs":1586638157000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBlOWRiZDg0MDZiMjU2ZjZiNWU1NTNkNjc2OTY4M2E1NTkwOWFiODQ="],"dstIndex":237,"srcIndex":1086,"timestampMs":1586462221000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE2MzA5ZGE2Yzc4NmVmZTlkYzFmNzQ1YzYxYWQ0ZjJjMmFkNjFkNzY="],"dstIndex":252,"srcIndex":1087,"timestampMs":1586369661000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":255,"srcIndex":1088,"timestampMs":1586535321000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],"dstIndex":257,"srcIndex":1089,"timestampMs":1586436690000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],"dstIndex":259,"srcIndex":1090,"timestampMs":1586760993000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE5MWU3M2U0MjlhYjE5M2U1OTE4OWY0NGIzNjNkNjk2MTNlZTAzMTU="],"dstIndex":261,"srcIndex":1091,"timestampMs":1586607165000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjExYTQ1ZWIxODhhNzU2ZTMxZjJlY2UwYWZjZjEwYWZiNWUzMDExMmY="],"dstIndex":239,"srcIndex":1092,"timestampMs":1586887494000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],"dstIndex":245,"srcIndex":1093,"timestampMs":1586425839000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],"dstIndex":271,"srcIndex":1094,"timestampMs":1586994934000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],"dstIndex":272,"srcIndex":1095,"timestampMs":1586475320000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI3NWQxNjNlZmRkODEyY2RjZDZhZTJmNWE4YWZmMWJhYjNiZWQwZTc="],"dstIndex":286,"srcIndex":1096,"timestampMs":1586211419000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI5ZDlhOGVmMGQ3MzhkOGIxYmRhZTg3M2M4OTJhZjQxODU4Y2RhMGE="],"dstIndex":289,"srcIndex":1097,"timestampMs":1586635242000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],"dstIndex":276,"srcIndex":1098,"timestampMs":1586636313000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],"dstIndex":278,"srcIndex":1099,"timestampMs":1586972808000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],"dstIndex":279,"srcIndex":1100,"timestampMs":1586436960000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],"dstIndex":282,"srcIndex":1101,"timestampMs":1586645851000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],"dstIndex":292,"srcIndex":1102,"timestampMs":1586114997000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],"dstIndex":294,"srcIndex":1103,"timestampMs":1586436983000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],"dstIndex":297,"srcIndex":1104,"timestampMs":1586439726000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJkMjkwYjIyODhhMTRkNDk0ZjBmYzE4YmZhYzg4MmVmNmM2MTdlNmE="],"dstIndex":300,"srcIndex":1105,"timestampMs":1586844255000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM2ZWQ5NWRkZjgzNDliYTNkNTU3YmZiYmVmMDY2YjI1NTliNDMyYTM="],"dstIndex":323,"srcIndex":1106,"timestampMs":1586718195000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],"dstIndex":334,"srcIndex":1107,"timestampMs":1587058277000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],"dstIndex":309,"srcIndex":1108,"timestampMs":1587049226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],"dstIndex":311,"srcIndex":1109,"timestampMs":1586430447000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],"dstIndex":313,"srcIndex":1110,"timestampMs":1586438375000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],"dstIndex":315,"srcIndex":1111,"timestampMs":1586710226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],"dstIndex":316,"srcIndex":1112,"timestampMs":1586110667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],"dstIndex":318,"srcIndex":1113,"timestampMs":1586718047000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],"dstIndex":335,"srcIndex":1114,"timestampMs":1586439440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],"dstIndex":336,"srcIndex":1115,"timestampMs":1586658493000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNTI5MjM5NDA5NjllMDU5NGM5NjkzZDI3ZTgwYmY4MWU0OWJkZmI="],"dstIndex":342,"srcIndex":1116,"timestampMs":1586211419000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNzE2Y2EzOWEzMDVlNWQ4YTliMmE1YWE0NjYwMzk0NjZkMDVhMzg="],"dstIndex":343,"srcIndex":1117,"timestampMs":1586952325000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],"dstIndex":344,"srcIndex":1118,"timestampMs":1586641745000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNlMzc2MDAwN2M5ZDBhOTQ3MWY1ZjBkNDI5YWM0YzMwYjFmYjU0ZjY="],"dstIndex":346,"srcIndex":1119,"timestampMs":1586704923000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],"dstIndex":357,"srcIndex":1120,"timestampMs":1586796945000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzcyMzUzZjhkOTUwMjI2ZDkwOWIxMjc3OGNiZWQ0ZGYzZWQ4NjY="],"dstIndex":358,"srcIndex":1121,"timestampMs":1586348063000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],"dstIndex":361,"srcIndex":1122,"timestampMs":1586446367000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],"dstIndex":362,"srcIndex":1123,"timestampMs":1586978574000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZjI1ZWE0ZWI2NDY0MjdjMDZlNThiN2U0Y2UyYzRjZDM4NWMzMjk="],"dstIndex":363,"srcIndex":1124,"timestampMs":1586535464000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],"dstIndex":366,"srcIndex":1125,"timestampMs":1586107822000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQwMDM2YTM4NmIwN2M0MWI4OWU1OTQ3MzZkYWRiNjEzNGNmMTgyZGU="],"dstIndex":350,"srcIndex":1126,"timestampMs":1586498582000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhNjIzZmJjMzczNWM5YTMyZDEwMTk5ODgwMjE0Y2M3OWNhYTQwMDQ="],"dstIndex":369,"srcIndex":1127,"timestampMs":1586712241000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],"dstIndex":371,"srcIndex":1128,"timestampMs":1586111848000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],"dstIndex":375,"srcIndex":1129,"timestampMs":1586450203000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRlYzZiZGM2YTEyMGUxMjMwNTJlYmY2OTBkZGY2ZjMyYjljMzU3MjI="],"dstIndex":376,"srcIndex":1130,"timestampMs":1586649806000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],"dstIndex":386,"srcIndex":1131,"timestampMs":1586208161000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU1NGE4MmJjMDVjYjcxM2U5MmU4YjM1MjNiNTIxMDc4ZGFmODI5ZjA="],"dstIndex":387,"srcIndex":1132,"timestampMs":1586779463000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU2ZTE0NTBhYmQyOTQ1N2QzYWVmYmRhZWYzZTM4NTYyNzI3Yjc2Mjg="],"dstIndex":390,"srcIndex":1133,"timestampMs":1586477016000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUwMjNlZWU3MWM5YzNmMmYxNmRlMWIyMmU5ZjM3ZmRhMjZjMmYwMjM="],"dstIndex":378,"srcIndex":1134,"timestampMs":1586995532000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],"dstIndex":383,"srcIndex":1135,"timestampMs":1586608102000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzYjZmMWI5ODBiNzk3ZjkyZDU5ZmM0OTEyYjJmZTZlOTk5Zjc3NGE="],"dstIndex":384,"srcIndex":1136,"timestampMs":1586628192000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzZDliNjI4NjJkMGU4ZWY1OTdkYmZmY2JkMGRhOGJjZDEyMTAwY2M="],"dstIndex":385,"srcIndex":1137,"timestampMs":1586736284000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVhZTZkYjc0ZWM2MzgyMjJjYjYwOTU3YzMxMDVlMTVkZTdmODQ0NTc="],"dstIndex":395,"srcIndex":1138,"timestampMs":1586712506000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],"dstIndex":400,"srcIndex":1139,"timestampMs":1586438648000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkZDA1ZTM2MDVlOTk0MGY2NWYyMDU5ZThjNDI4NjA3N2E2NDM5ZGI="],"dstIndex":401,"srcIndex":1140,"timestampMs":1586556340000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmNjg5MDEwZjZlMGE0Mzg1MTNiN2U0NGVmMzdhZTEyZDU5ZGRmOTE="],"dstIndex":404,"srcIndex":1141,"timestampMs":1586412877000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmYzk5ZjA5MjZhMzgxNDBiYzQxYWI1MzIyZTI4ZTQzZjViNTA5Njk="],"dstIndex":406,"srcIndex":1142,"timestampMs":1586520161000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],"dstIndex":419,"srcIndex":1143,"timestampMs":1586447296000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],"dstIndex":421,"srcIndex":1144,"timestampMs":1586262990000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],"dstIndex":423,"srcIndex":1145,"timestampMs":1586108344000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],"dstIndex":407,"srcIndex":1146,"timestampMs":1586822144000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNDRkYTc3ZDc3Y2Q1ZjBiZjc4MmZkNDdmYWY3ODEzY2I5YTAwZDc="],"dstIndex":408,"srcIndex":1147,"timestampMs":1586426011000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNGJhODc2MWNkZGRjODRiZmE2NjQ4NWZlMzY3NDk1ZTVjOGE2NWE="],"dstIndex":409,"srcIndex":1148,"timestampMs":1586619438000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],"dstIndex":410,"srcIndex":1149,"timestampMs":1586712379000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYyZDQ3MjQyMzMyZjRlMWQ4NmY3ZDdhZTQ2MGY2ZGM5OTgzNDRhYTI="],"dstIndex":414,"srcIndex":1150,"timestampMs":1586631415000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],"dstIndex":428,"srcIndex":1151,"timestampMs":1586629712000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmMWEzOTY4ZGFhMWUzZDJiZDYwN2Y4MWE1OTlhYzVlYmY3M2Y3MTc="],"dstIndex":434,"srcIndex":1152,"timestampMs":1586263834000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],"dstIndex":435,"srcIndex":1153,"timestampMs":1586810697000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmYjU4ZDJiY2IxMGVmYTFhMTgzNmIwYmYzMzU3YWU2YmMzMzk1NWI="],"dstIndex":437,"srcIndex":1154,"timestampMs":1586541781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],"dstIndex":443,"srcIndex":1155,"timestampMs":1586630579000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],"dstIndex":444,"srcIndex":1156,"timestampMs":1586640176000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],"dstIndex":445,"srcIndex":1157,"timestampMs":1586802604000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],"dstIndex":446,"srcIndex":1158,"timestampMs":1586972788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],"dstIndex":447,"srcIndex":1159,"timestampMs":1586264143000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],"dstIndex":449,"srcIndex":1160,"timestampMs":1586443674000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjcxM2FjYmQ0NTkzYTdhMTBiMDU0NGFhYWI3ZmM0YWMwNWE2NmY5YWU="],"dstIndex":438,"srcIndex":1161,"timestampMs":1586671402000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczNTA1YzM0YTFiNDZhM2RmY2FjYTRkOWMzYWExMTZmZGY1MWUwZGI="],"dstIndex":440,"srcIndex":1162,"timestampMs":1586265411000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczZGJmZWEwMGQyNjlmZjk1M2VlNTBjMDM0ZjFjNjkzOTc0M2E1ZGU="],"dstIndex":441,"srcIndex":1163,"timestampMs":1586909106000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhOTkxOTYzYTVjOGZjOGRiYTRhYjZhMGMxZTM5NDIxZWVlYzQ1ZDY="],"dstIndex":452,"srcIndex":1164,"timestampMs":1586456075000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],"dstIndex":453,"srcIndex":1165,"timestampMs":1586629689000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],"dstIndex":454,"srcIndex":1166,"timestampMs":1586642724000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],"dstIndex":457,"srcIndex":1167,"timestampMs":1587042850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],"dstIndex":460,"srcIndex":1168,"timestampMs":1586461703000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],"dstIndex":463,"srcIndex":1169,"timestampMs":1586264058000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlYTU5MTZhZDZmOWRlOTg0MWYyNzc5MDE1MDZhYjcyYTM5YmYxNTc="],"dstIndex":464,"srcIndex":1170,"timestampMs":1586973850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],"dstIndex":465,"srcIndex":1171,"timestampMs":1586208446000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],"dstIndex":478,"srcIndex":1172,"timestampMs":1586264565000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],"dstIndex":482,"srcIndex":1173,"timestampMs":1586264365000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhhNTg0ZTRiNGY5YzhhMTExMWJmMzgzZDNhN2E3MmNhM2Y4ZWU1Yjk="],"dstIndex":484,"srcIndex":1174,"timestampMs":1586634125000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],"dstIndex":486,"srcIndex":1175,"timestampMs":1586633972000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],"dstIndex":487,"srcIndex":1176,"timestampMs":1586630527000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],"dstIndex":488,"srcIndex":1177,"timestampMs":1586632841000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],"dstIndex":489,"srcIndex":1178,"timestampMs":1586446829000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],"dstIndex":492,"srcIndex":1179,"timestampMs":1586437704000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlMTNmMzlkMTM3MmI0MjJhOTE0ODU3ZjMyNGVlNjBhYmQyYzc5NWE="],"dstIndex":494,"srcIndex":1180,"timestampMs":1586630734000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],"dstIndex":496,"srcIndex":1181,"timestampMs":1586643749000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],"dstIndex":497,"srcIndex":1182,"timestampMs":1587058263000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlODBiOGZmNWJiYzgxMjNlNTdhYzcyOGZjOWVmY2QxY2QyZDAzOGI="],"dstIndex":498,"srcIndex":1183,"timestampMs":1586613015000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],"dstIndex":499,"srcIndex":1184,"timestampMs":1586556200000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],"dstIndex":509,"srcIndex":1185,"timestampMs":1586426157000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],"dstIndex":510,"srcIndex":1186,"timestampMs":1586504576000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk4MmE4OWRmMmI1MjgyNTc4YTc1OTNlZWE0OTUxMWFlODAzZWUxMGI="],"dstIndex":513,"srcIndex":1187,"timestampMs":1586637613000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],"dstIndex":500,"srcIndex":1188,"timestampMs":1587050798000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],"dstIndex":501,"srcIndex":1189,"timestampMs":1587051668000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],"dstIndex":502,"srcIndex":1190,"timestampMs":1586632115000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],"dstIndex":505,"srcIndex":1191,"timestampMs":1586115022000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],"dstIndex":524,"srcIndex":1192,"timestampMs":1586395769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],"dstIndex":542,"srcIndex":1193,"timestampMs":1586978547000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],"dstIndex":544,"srcIndex":1194,"timestampMs":1587051026000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],"dstIndex":547,"srcIndex":1195,"timestampMs":1586428289000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],"dstIndex":550,"srcIndex":1196,"timestampMs":1586635956000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],"dstIndex":553,"srcIndex":1197,"timestampMs":1586717770000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],"dstIndex":525,"srcIndex":1198,"timestampMs":1586975177000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],"dstIndex":526,"srcIndex":1199,"timestampMs":1586566089000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],"dstIndex":527,"srcIndex":1200,"timestampMs":1586637453000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],"dstIndex":528,"srcIndex":1201,"timestampMs":1586209230000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzNTZmZTM3YjNlZTIyNTZkNTI5YTYyNWE0MmQ4OTA5NjI4NzAwOTY="],"dstIndex":536,"srcIndex":1202,"timestampMs":1586606578000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],"dstIndex":540,"srcIndex":1203,"timestampMs":1586619306000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],"dstIndex":557,"srcIndex":1204,"timestampMs":1586635980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFjZTNkODIxODMzYzAxNTdlOGUzZjc0YzA2OTUxZmU3OWNiYjQ5ZTc="],"dstIndex":558,"srcIndex":1205,"timestampMs":1586475455000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFmM2ZjNDBiMGI0ZjAxMGY0MjM2MzkxYmMyNDViYWI1YzNmYzUzNDM="],"dstIndex":562,"srcIndex":1206,"timestampMs":1586801019000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],"dstIndex":578,"srcIndex":1207,"timestampMs":1586440952000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1NWE3YTE5NmI4Zjg1ODE3ZTg1NDhiZjdiOWFmYmExMzQxMTMxZTI="],"dstIndex":579,"srcIndex":1208,"timestampMs":1586566249000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],"dstIndex":583,"srcIndex":1209,"timestampMs":1586704728000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],"dstIndex":592,"srcIndex":1210,"timestampMs":1586425156000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],"dstIndex":568,"srcIndex":1211,"timestampMs":1586810374000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyZWMwNjQ2YTc1MzM4MjhiMDAzYTdjYzUyNWFjMGVjNDhjNWQ5YTA="],"dstIndex":569,"srcIndex":1212,"timestampMs":1586692988000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],"dstIndex":570,"srcIndex":1213,"timestampMs":1586810650000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],"dstIndex":572,"srcIndex":1214,"timestampMs":1586633830000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],"dstIndex":575,"srcIndex":1215,"timestampMs":1586631279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJhYjQ4OGUwNTMxYTgyNjc3NzgyOWU3MGM0Y2Y4ZjYyMDIwMmU4ODE="],"dstIndex":599,"srcIndex":1216,"timestampMs":1586304876000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJiNGM4MDYwOGRiNTJjMDNhMzNiMDllZGJmOGZkYmZmYzY2NmM2NjQ="],"dstIndex":600,"srcIndex":1217,"timestampMs":1586659664000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJjYzBkMWUxOGY1NmMwZWUwOThjN2ExMzE2YWZhNTI1MmM1ZDMzOTI="],"dstIndex":605,"srcIndex":1218,"timestampMs":1586326476000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],"dstIndex":609,"srcIndex":1219,"timestampMs":1586439053000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],"dstIndex":610,"srcIndex":1220,"timestampMs":1586645068000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],"dstIndex":611,"srcIndex":1221,"timestampMs":1587051708000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],"dstIndex":625,"srcIndex":1222,"timestampMs":1586461592000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],"dstIndex":630,"srcIndex":1223,"timestampMs":1586426867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],"dstIndex":633,"srcIndex":1224,"timestampMs":1586659020000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],"dstIndex":635,"srcIndex":1225,"timestampMs":1586462092000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],"dstIndex":637,"srcIndex":1226,"timestampMs":1586445094000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],"dstIndex":614,"srcIndex":1227,"timestampMs":1586659508000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],"dstIndex":615,"srcIndex":1228,"timestampMs":1586710445000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],"dstIndex":616,"srcIndex":1229,"timestampMs":1586461896000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],"dstIndex":617,"srcIndex":1230,"timestampMs":1586640763000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMxOTFlNTdmNDQ2NjJiY2I3NTNlYzRjMDhhMjU1NDViMGQyNWUyODQ="],"dstIndex":618,"srcIndex":1231,"timestampMs":1586865848000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMyNjRjZmUxYmM5NmM3NTgwNzliZmZjZDcyOGY0OTdkMGQ3YzAxMTc="],"dstIndex":619,"srcIndex":1232,"timestampMs":1587038694000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMzNGJjOWM1NzNlYWNjMDA4Y2E5ODY1M2RkZDI2NjFmODIzZmY5YjI="],"dstIndex":621,"srcIndex":1233,"timestampMs":1587060270000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],"dstIndex":638,"srcIndex":1234,"timestampMs":1586442756000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],"dstIndex":639,"srcIndex":1235,"timestampMs":1586656761000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],"dstIndex":641,"srcIndex":1236,"timestampMs":1586639218000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],"dstIndex":643,"srcIndex":1237,"timestampMs":1586431949000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],"dstIndex":654,"srcIndex":1238,"timestampMs":1586711922000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],"dstIndex":658,"srcIndex":1239,"timestampMs":1586712103000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],"dstIndex":661,"srcIndex":1240,"timestampMs":1586820040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],"dstIndex":662,"srcIndex":1241,"timestampMs":1586425693000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],"dstIndex":665,"srcIndex":1242,"timestampMs":1586646488000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],"dstIndex":666,"srcIndex":1243,"timestampMs":1586657456000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],"dstIndex":646,"srcIndex":1244,"timestampMs":1586109264000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],"dstIndex":648,"srcIndex":1245,"timestampMs":1586395938000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],"dstIndex":651,"srcIndex":1246,"timestampMs":1586443142000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],"dstIndex":653,"srcIndex":1247,"timestampMs":1586704788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],"dstIndex":670,"srcIndex":1248,"timestampMs":1586612834000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],"dstIndex":671,"srcIndex":1249,"timestampMs":1586443040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRiYjRiYmI0YTQ4YmYzNmIzODkwY2IyMzAxMjMzN2MwYmZiZmM2Yzc="],"dstIndex":673,"srcIndex":1250,"timestampMs":1586584977000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],"dstIndex":674,"srcIndex":1251,"timestampMs":1586439553000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],"dstIndex":681,"srcIndex":1252,"timestampMs":1586449851000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU0ZGIxZTVjMDEzOTA1OTBhNTNlNDc0MjRiNmZjNjM4OWZiZWQ0NTk="],"dstIndex":692,"srcIndex":1253,"timestampMs":1586646613000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],"dstIndex":693,"srcIndex":1254,"timestampMs":1586440769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],"dstIndex":696,"srcIndex":1255,"timestampMs":1586638167000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],"dstIndex":697,"srcIndex":1256,"timestampMs":1586442958000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],"dstIndex":698,"srcIndex":1257,"timestampMs":1586443278000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4ZDI1NjZlMDIzYTdjZWZiMDRjNTE1N2IwZjg1NTY4ZmNiOWEzYzU="],"dstIndex":699,"srcIndex":1258,"timestampMs":1587017056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],"dstIndex":687,"srcIndex":1259,"timestampMs":1586108556000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],"dstIndex":688,"srcIndex":1260,"timestampMs":1586632045000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],"dstIndex":706,"srcIndex":1261,"timestampMs":1586644275000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],"dstIndex":707,"srcIndex":1262,"timestampMs":1586439910000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],"dstIndex":708,"srcIndex":1263,"timestampMs":1586635090000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlODA1YzIzMGQ1OGI0MjBmMzliZWRkNmQ3ZGM1YzEwYzhmMTQ4NTY="],"dstIndex":710,"srcIndex":1264,"timestampMs":1586563402000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],"dstIndex":712,"srcIndex":1265,"timestampMs":1586761063000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVmZTJhMjEwMjQyYWRjZDUyYTI4OGQ1N2YzNzNiMDkxODdiODhjMTc="],"dstIndex":714,"srcIndex":1266,"timestampMs":1586714645000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],"dstIndex":723,"srcIndex":1267,"timestampMs":1587049279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0NTk3ZWFhNmIwNjgxZWJmYjdlMzI5OTFmYzI5NWY1MjQyN2QxOTk="],"dstIndex":724,"srcIndex":1268,"timestampMs":1586630029000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],"dstIndex":725,"srcIndex":1269,"timestampMs":1586425884000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY1YjZiNWI5YjhhYjQ5MzM0MjU5MTc5OTM2OWJhYjQ0NzNhZDRiZDU="],"dstIndex":726,"srcIndex":1270,"timestampMs":1586930710000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],"dstIndex":728,"srcIndex":1271,"timestampMs":1586208275000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],"dstIndex":715,"srcIndex":1272,"timestampMs":1586641071000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],"dstIndex":716,"srcIndex":1273,"timestampMs":1586446525000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxNjUwNTgxNDk1YmQ1YmE5NTFlNmFjYTNhZGM2NWFhNDI3MWU3ZWM="],"dstIndex":717,"srcIndex":1274,"timestampMs":1586391268000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],"dstIndex":720,"srcIndex":1275,"timestampMs":1586607022000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],"dstIndex":721,"srcIndex":1276,"timestampMs":1586457498000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],"dstIndex":736,"srcIndex":1277,"timestampMs":1586656082000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZjZTMzMzk5ZDA2OTY5OTUzODVkODg5NTk5NWNiMGZkYWFkNTY2MTU="],"dstIndex":738,"srcIndex":1278,"timestampMs":1586504710000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],"dstIndex":740,"srcIndex":1279,"timestampMs":1586639647000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],"dstIndex":743,"srcIndex":1280,"timestampMs":1586396173000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmNzA4YzNiNzM1MmE5YjY1OWRmODEyMDM1MWU2ZjFlYWI1NjZhMmE="],"dstIndex":744,"srcIndex":1281,"timestampMs":1586450503000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],"dstIndex":745,"srcIndex":1282,"timestampMs":1586109667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],"dstIndex":227,"srcIndex":1283,"timestampMs":1585184379000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],"dstIndex":217,"srcIndex":1284,"timestampMs":1583868918000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],"dstIndex":232,"srcIndex":1285,"timestampMs":1583846036000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],"dstIndex":236,"srcIndex":1286,"timestampMs":1586115483000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],"dstIndex":256,"srcIndex":1287,"timestampMs":1585184096000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],"dstIndex":238,"srcIndex":1288,"timestampMs":1586115750000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],"dstIndex":246,"srcIndex":1289,"timestampMs":1584727008000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],"dstIndex":264,"srcIndex":1290,"timestampMs":1586119837000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],"dstIndex":270,"srcIndex":1291,"timestampMs":1586119867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],"dstIndex":317,"srcIndex":1292,"timestampMs":1583841786000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],"dstIndex":345,"srcIndex":1293,"timestampMs":1583855508000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],"dstIndex":348,"srcIndex":1294,"timestampMs":1584736018000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],"dstIndex":364,"srcIndex":1295,"timestampMs":1586115035000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],"dstIndex":403,"srcIndex":1296,"timestampMs":1584727355000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],"dstIndex":405,"srcIndex":1297,"timestampMs":1586116855000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],"dstIndex":411,"srcIndex":1298,"timestampMs":1584733391000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],"dstIndex":430,"srcIndex":1299,"timestampMs":1585132575000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],"dstIndex":451,"srcIndex":1300,"timestampMs":1585128878000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],"dstIndex":485,"srcIndex":1301,"timestampMs":1584729372000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],"dstIndex":503,"srcIndex":1302,"timestampMs":1585126267000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],"dstIndex":518,"srcIndex":1303,"timestampMs":1586115569000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],"dstIndex":551,"srcIndex":1304,"timestampMs":1585126105000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],"dstIndex":529,"srcIndex":1305,"timestampMs":1584722599000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],"dstIndex":531,"srcIndex":1306,"timestampMs":1586115692000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],"dstIndex":539,"srcIndex":1307,"timestampMs":1586115737000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],"dstIndex":580,"srcIndex":1308,"timestampMs":1585142847000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],"dstIndex":589,"srcIndex":1309,"timestampMs":1586115523000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],"dstIndex":566,"srcIndex":1310,"timestampMs":1583707484000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],"dstIndex":604,"srcIndex":1311,"timestampMs":1584925959000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],"dstIndex":652,"srcIndex":1312,"timestampMs":1584468261000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],"dstIndex":676,"srcIndex":1313,"timestampMs":1585184645000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],"dstIndex":675,"srcIndex":1314,"timestampMs":1586115159000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],"dstIndex":739,"srcIndex":1315,"timestampMs":1585134244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],"dstIndex":741,"srcIndex":1316,"timestampMs":1584727333000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","12"],"dstIndex":1382,"srcIndex":1317,"timestampMs":1586638125000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1382,"srcIndex":1318,"timestampMs":1586704018000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","15"],"dstIndex":1382,"srcIndex":1319,"timestampMs":1586705495000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1382,"srcIndex":1320,"timestampMs":1586705553000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","17"],"dstIndex":1382,"srcIndex":1321,"timestampMs":1586705865000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","18"],"dstIndex":1382,"srcIndex":1322,"timestampMs":1586712839000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","19"],"dstIndex":1382,"srcIndex":1323,"timestampMs":1586768126000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","2"],"dstIndex":1382,"srcIndex":1324,"timestampMs":1586269776000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","22"],"dstIndex":1382,"srcIndex":1325,"timestampMs":1586819336000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1382,"srcIndex":1326,"timestampMs":1586821830000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","24"],"dstIndex":1382,"srcIndex":1327,"timestampMs":1586823283000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1382,"srcIndex":1328,"timestampMs":1586858542000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","26"],"dstIndex":1382,"srcIndex":1329,"timestampMs":1586921943000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","3"],"dstIndex":1382,"srcIndex":1330,"timestampMs":1586390052000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","4"],"dstIndex":1382,"srcIndex":1331,"timestampMs":1586390446000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","5"],"dstIndex":1382,"srcIndex":1332,"timestampMs":1586390871000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","6"],"dstIndex":1382,"srcIndex":1333,"timestampMs":1586396494000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","8"],"dstIndex":1382,"srcIndex":1334,"timestampMs":1586435403000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","9"],"dstIndex":1382,"srcIndex":1335,"timestampMs":1586440155000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","TheSource","3"],"dstIndex":1383,"srcIndex":1336,"timestampMs":1586104764000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1384,"srcIndex":1337,"timestampMs":1586116752000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1385,"srcIndex":1338,"timestampMs":1586917207000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1385,"srcIndex":1339,"timestampMs":1586934042000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","3"],"dstIndex":1385,"srcIndex":1340,"timestampMs":1586934224000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1385,"srcIndex":1341,"timestampMs":1586990170000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","6"],"dstIndex":1385,"srcIndex":1342,"timestampMs":1586990449000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","7"],"dstIndex":1385,"srcIndex":1343,"timestampMs":1586990584000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","comms","1"],"dstIndex":1386,"srcIndex":1344,"timestampMs":1586709265000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","leaderboard","1"],"dstIndex":1388,"srcIndex":1345,"timestampMs":1586706267000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","leaderboard","2"],"dstIndex":1388,"srcIndex":1346,"timestampMs":1586706318000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","1"],"dstIndex":1389,"srcIndex":1347,"timestampMs":1586666816000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","2"],"dstIndex":1389,"srcIndex":1348,"timestampMs":1586666998000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","3"],"dstIndex":1389,"srcIndex":1349,"timestampMs":1586705051000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1389,"srcIndex":1350,"timestampMs":1586709014000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","5"],"dstIndex":1389,"srcIndex":1351,"timestampMs":1586772477000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","6"],"dstIndex":1389,"srcIndex":1352,"timestampMs":1586772739000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","10"],"dstIndex":1390,"srcIndex":1353,"timestampMs":1586705290000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","11"],"dstIndex":1390,"srcIndex":1354,"timestampMs":1586712148000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","2"],"dstIndex":1390,"srcIndex":1355,"timestampMs":1586571331000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","7"],"dstIndex":1390,"srcIndex":1356,"timestampMs":1586662991000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1382,"srcIndex":1357,"timestampMs":1586264552000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1382,"srcIndex":1358,"timestampMs":1586446688000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1382,"srcIndex":1359,"timestampMs":1586449916000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1382,"srcIndex":1360,"timestampMs":1586658580000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1382,"srcIndex":1361,"timestampMs":1586802611000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1382,"srcIndex":1362,"timestampMs":1586810530000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1382,"srcIndex":1363,"timestampMs":1586995113000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1382,"srcIndex":1364,"timestampMs":1586425681000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1383,"srcIndex":1365,"timestampMs":1586103666000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1383,"srcIndex":1366,"timestampMs":1586104083000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1385,"srcIndex":1367,"timestampMs":1586970997000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1385,"srcIndex":1368,"timestampMs":1587070982000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","9"],"dstIndex":1385,"srcIndex":1369,"timestampMs":1587079858000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1390,"srcIndex":1370,"timestampMs":1586566012000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","12"],"dstIndex":1390,"srcIndex":1371,"timestampMs":1586717760000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1390,"srcIndex":1372,"timestampMs":1586727817000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1390,"srcIndex":1373,"timestampMs":1586797004000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1390,"srcIndex":1374,"timestampMs":1586914696000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","16"],"dstIndex":1390,"srcIndex":1375,"timestampMs":1586987888000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1390,"srcIndex":1376,"timestampMs":1586633970000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1390,"srcIndex":1377,"timestampMs":1586645179000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1390,"srcIndex":1378,"timestampMs":1586654103000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1390,"srcIndex":1379,"timestampMs":1586656931000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1390,"srcIndex":1380,"timestampMs":1586663009000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1390,"srcIndex":1381,"timestampMs":1586664552000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],"dstIndex":1360,"srcIndex":1391,"timestampMs":1586658808000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","bot","8","395001410"],"dstIndex":1368,"srcIndex":1392,"timestampMs":1587071400000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","bot","8","395035075"],"dstIndex":1368,"srcIndex":1393,"timestampMs":1587075078000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","website","15","393444362"],"dstIndex":1374,"srcIndex":1394,"timestampMs":1586924060000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],"dstIndex":1318,"srcIndex":746,"timestampMs":1586735225000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],"dstIndex":1318,"srcIndex":747,"timestampMs":1586793675000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],"dstIndex":1320,"srcIndex":748,"timestampMs":1586821838000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],"dstIndex":1322,"srcIndex":749,"timestampMs":1586773257000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":1322,"srcIndex":750,"timestampMs":1586787682000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],"dstIndex":1322,"srcIndex":751,"timestampMs":1586808032000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],"dstIndex":1325,"srcIndex":752,"timestampMs":1586819514000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],"dstIndex":1325,"srcIndex":753,"timestampMs":1586820570000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],"dstIndex":1325,"srcIndex":754,"timestampMs":1586840296000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],"dstIndex":1328,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],"dstIndex":1329,"srcIndex":756,"timestampMs":1586922019000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],"dstIndex":1336,"srcIndex":757,"timestampMs":1586802750000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],"dstIndex":1340,"srcIndex":758,"timestampMs":1586990245000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],"dstIndex":1347,"srcIndex":759,"timestampMs":1586666872000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],"dstIndex":1347,"srcIndex":760,"timestampMs":1586797413000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":1347,"srcIndex":761,"timestampMs":1586801390000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],"dstIndex":1347,"srcIndex":762,"timestampMs":1586801948000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":1347,"srcIndex":763,"timestampMs":1586802204000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],"dstIndex":1347,"srcIndex":764,"timestampMs":1586802422000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],"dstIndex":1347,"srcIndex":765,"timestampMs":1586962450000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],"dstIndex":1348,"srcIndex":766,"timestampMs":1586704028000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],"dstIndex":1349,"srcIndex":767,"timestampMs":1586709561000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],"dstIndex":1350,"srcIndex":768,"timestampMs":1586858205000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":1352,"srcIndex":769,"timestampMs":1586773337000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":1352,"srcIndex":770,"timestampMs":1586773655000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],"dstIndex":1352,"srcIndex":771,"timestampMs":1586786432000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],"dstIndex":1352,"srcIndex":772,"timestampMs":1586786582000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],"dstIndex":1352,"srcIndex":773,"timestampMs":1586790511000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":1352,"srcIndex":774,"timestampMs":1586790870000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],"dstIndex":1352,"srcIndex":775,"timestampMs":1586959270000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":1361,"srcIndex":776,"timestampMs":1586810690000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],"dstIndex":1369,"srcIndex":777,"timestampMs":1587079943000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":1392,"srcIndex":778,"timestampMs":1587071400000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":1392,"srcIndex":779,"timestampMs":1587071419000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":1392,"srcIndex":780,"timestampMs":1587071453000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1172,"srcIndex":1357,"timestampMs":1586264565000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1178,"srcIndex":1358,"timestampMs":1586446829000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1129,"srcIndex":1359,"timestampMs":1586450203000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1074,"srcIndex":1360,"timestampMs":1586658939000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1153,"srcIndex":1361,"timestampMs":1586810697000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1213,"srcIndex":1362,"timestampMs":1586810650000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1167,"srcIndex":1363,"timestampMs":1587042850000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1241,"srcIndex":1364,"timestampMs":1586425693000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":896,"srcIndex":1365,"timestampMs":1586104041000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1022,"srcIndex":1366,"timestampMs":1586104090000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":794,"srcIndex":1367,"timestampMs":1586971104000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":801,"srcIndex":1368,"timestampMs":1587075097000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":814,"srcIndex":1370,"timestampMs":1586566020000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":824,"srcIndex":1372,"timestampMs":1586727823000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":823,"srcIndex":1373,"timestampMs":1586797014000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":864,"srcIndex":1376,"timestampMs":1586633977000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":868,"srcIndex":1377,"timestampMs":1586645187000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":870,"srcIndex":1378,"timestampMs":1586654110000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":822,"srcIndex":1379,"timestampMs":1586656936000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":837,"srcIndex":1380,"timestampMs":1586663015000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":813,"srcIndex":1381,"timestampMs":1586664558000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1397,"timestampMs":1586871593000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1338,"srcIndex":1397,"timestampMs":1586918494000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1374,"srcIndex":1397,"timestampMs":1586924028000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":769,"srcIndex":1397,"timestampMs":1586785423000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":770,"srcIndex":1397,"timestampMs":1586785422000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":776,"srcIndex":1397,"timestampMs":1586810718000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":1402,"timestampMs":1587076887000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1410,"timestampMs":1586790714000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1402,"timestampMs":1586810640000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1397,"timestampMs":1586871595000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":763,"srcIndex":1397,"timestampMs":1586802382000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1410,"timestampMs":1586790717000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":774,"srcIndex":1410,"timestampMs":1586791025000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":761,"srcIndex":1397,"timestampMs":1586801822000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1402,"timestampMs":1586810630000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":778,"srcIndex":1403,"timestampMs":1587071912000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":779,"srcIndex":1403,"timestampMs":1587071947000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":780,"srcIndex":1403,"timestampMs":1587072066000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU=","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1367,"srcIndex":794,"timestampMs":1586971104000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI=","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":801,"timestampMs":1587075097000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM=","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1381,"srcIndex":813,"timestampMs":1586664558000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI=","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1370,"srcIndex":814,"timestampMs":1586566020000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE=","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1379,"srcIndex":822,"timestampMs":1586656936000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ=","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1373,"srcIndex":823,"timestampMs":1586797014000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc=","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1372,"srcIndex":824,"timestampMs":1586727823000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg=","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1380,"srcIndex":837,"timestampMs":1586663015000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE=","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1376,"srcIndex":864,"timestampMs":1586633977000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE=","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1377,"srcIndex":868,"timestampMs":1586645187000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk=","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1378,"srcIndex":870,"timestampMs":1586654110000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY=","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":896,"timestampMs":1586104041000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],"dstIndex":895,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":1000,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":907,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":1026,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA=","5","sourcecred","github","USERLIKE","USER","hammadj"],"dstIndex":1409,"srcIndex":950,"timestampMs":1583122040000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":982,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":1028,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I=","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":982,"timestampMs":1581902687000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM=","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1366,"srcIndex":1022,"timestampMs":1586104090000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],"dstIndex":897,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":1037,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA=","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1094,"timestampMs":1586994934000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM=","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1359,"srcIndex":1129,"timestampMs":1586450203000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc=","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1361,"srcIndex":1153,"timestampMs":1586810697000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI=","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1363,"srcIndex":1167,"timestampMs":1587042850000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ=","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1357,"srcIndex":1172,"timestampMs":1586264565000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":1088,"srcIndex":1199,"timestampMs":1586566089000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY=","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1213,"timestampMs":1586810650000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI=","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1364,"srcIndex":1241,"timestampMs":1586425693000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc=","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1337,"srcIndex":1296,"timestampMs":1584727355000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","15","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1318,"srcIndex":1319,"timestampMs":1586705495000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","17","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1320,"srcIndex":1321,"timestampMs":1586705865000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","26","5","sourcecred","github","USERLIKE","USER","pythonpete32"],"dstIndex":1401,"srcIndex":1329,"timestampMs":1586921943000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","bot","1","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":1338,"timestampMs":1586917207000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","onboarding","1","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1350,"srcIndex":1347,"timestampMs":1586666816000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","AraCred","21","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1362,"timestampMs":1586810530000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","AraCred","27","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1363,"timestampMs":1586995113000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","bot","8","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1341,"srcIndex":1368,"timestampMs":1587070982000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","bot","9","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1339,"srcIndex":1369,"timestampMs":1587079858000},{"address":["sourcecred","github","REFERENCES","7","sourcecred","github","REVIEW","aracred","bot","8","395001410","5","sourcecred","github","USERLIKE","USER","crisog"],"dstIndex":1403,"srcIndex":1392,"timestampMs":1587071400000},{"address":["sourcecred","github","REFERENCES","7","sourcecred","github","REVIEW","aracred","website","15","393444362","5","sourcecred","github","USERLIKE","USER","crisog"],"dstIndex":1403,"srcIndex":1394,"timestampMs":1586924060000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":748,"timestampMs":1586821838000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","pythonpete32"],"dstIndex":1401,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":756,"timestampMs":1586922019000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":761,"timestampMs":1586801390000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606","5","sourcecred","github","USERLIKE","USER","luisivan"],"dstIndex":1410,"srcIndex":771,"timestampMs":1586786432000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":776,"timestampMs":1586810690000}],"nodes":[{"description":"Aracred#5392","index":0,"timestampMs":null},{"description":"Beanow#5887","index":1,"timestampMs":null},{"description":"Mckmuze#3360","index":2,"timestampMs":null},{"description":"penguin#5853","index":3,"timestampMs":null},{"description":"James | Enigma#0357","index":4,"timestampMs":null},{"description":"TheEylon#9795","index":5,"timestampMs":null},{"description":"Jack G#7167","index":6,"timestampMs":null},{"description":"Santiago#0325","index":7,"timestampMs":null},{"description":"JackALaing#7001","index":8,"timestampMs":null},{"description":"Saimano#0272","index":9,"timestampMs":null},{"description":"Joey C#7995","index":10,"timestampMs":null},{"description":"LBS#6541","index":11,"timestampMs":null},{"description":"Luis from Aragon 🦅#8126","index":12,"timestampMs":null},{"description":"YoungKidWarrior#5865","index":13,"timestampMs":null},{"description":"#🎪-general message [\"testing...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":14,"timestampMs":1585931015500},{"description":"#🎪-general message [\"<@!118260545211072517> welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696451005914546256)","index":15,"timestampMs":1586117259244},{"description":"#🎪-general message [\"aracred.xyz...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696454968831508630)","index":16,"timestampMs":1586118204077},{"description":"#🎪-general message [\"aracred.dev...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696455224532926464)","index":17,"timestampMs":1586118265041},{"description":"#🎪-general message [\"<@!657069807505637397> how do ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696609260196593664)","index":18,"timestampMs":1586154990005},{"description":"#🎪-general message [\"<@683892894767251489> here we ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696708274682069062)","index":19,"timestampMs":1586178596898},{"description":"#🎪-general message [\"> This is an open-source proje...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696730540039995493)","index":20,"timestampMs":1586183905373},{"description":"#🎪-general message [\"<@!665203331639148553> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696740396331696198)","index":21,"timestampMs":1586186255296},{"description":"#🎪-general message [\"<@!371754999304290304> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696769305131614260)","index":22,"timestampMs":1586193147691},{"description":"#🎪-general message [\"<@!571023281382227978> <@!6570...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696853096441184326)","index":23,"timestampMs":1586213125096},{"description":"#🎪-general message [\"<@657069807505637397> was sad ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698673271729553469)","index":24,"timestampMs":1586647088702},{"description":"#🎪-general message [\"The SourceCred => ERC-20/DAO i...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698691171811328080)","index":25,"timestampMs":1586651356414},{"description":"#🎪-general message [\"<@!208321561982271489> What up...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698710294427467857)","index":26,"timestampMs":1586655915601},{"description":"#🎪-general message [\"hey hey <@!657069807505637397>...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698710365046833192)","index":27,"timestampMs":1586655932438},{"description":"#🎪-general message [\"Hey <@505789102222737420> 👋...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698799127244308550)","index":28,"timestampMs":1586677094995},{"description":"#🎪-general message [\"> I would also frame this a bi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698897288373993508)","index":29,"timestampMs":1586700498432},{"description":"#🎪-general message [\"It makes sense to me. There ha...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698919569078878289)","index":30,"timestampMs":1586705810566},{"description":"#🎪-general message [\"This works toward the concept ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698921167011971168)","index":31,"timestampMs":1586706191543},{"description":"#🎪-general message [\"At the end of the day “composi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698921390845198426)","index":32,"timestampMs":1586706244909},{"description":"#🎪-general message [\"Hey <@571023281382227978> 👋...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698932174396850236)","index":33,"timestampMs":1586708815908},{"description":"#🎪-general message [\"<@!333143183355543552> <@!5057...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698935929942966332)","index":34,"timestampMs":1586709711300},{"description":"#🎪-general message [\"<@!250086586450968576> I'd lik...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698941350531301477)","index":35,"timestampMs":1586711003669},{"description":"#🎪-general message [\"> At the end of the day “compo...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698946297012420619)","index":36,"timestampMs":1586712183002},{"description":"#🎪-general message [\"<@!657069807505637397> could w...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698965088530595990)","index":37,"timestampMs":1586716663249},{"description":"#🎪-general message [\"> I agree! in fact, i would ar...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698965418370400296)","index":38,"timestampMs":1586716741889},{"description":"#🎪-general message [\"> one term that i think we nee...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698968459890917436)","index":39,"timestampMs":1586717467044},{"description":"#🎪-general message [\"> <@!657069807505637397> could...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698968989878976612)","index":40,"timestampMs":1586717593403},{"description":"#🎪-general message [\"> like, in sourcecred I can re...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698969370533298296)","index":41,"timestampMs":1586717684158},{"description":"#🎪-general message [\"> if/when SourceCred community...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698969730580742174)","index":42,"timestampMs":1586717770000},{"description":"#🎪-general message [\"<@!321092785921064961> welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698970943955140738)","index":43,"timestampMs":1586718059291},{"description":"#🎪-general message [\"Beyond that, if you want to le...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698973708316049488)","index":44,"timestampMs":1586718718366},{"description":"#🎪-general message [\"> and I was thinking something...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698982179069362196)","index":45,"timestampMs":1586720737951},{"description":"#🎪-general message [\"> <@!250086586450968576> I'd l...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699006982681657354)","index":46,"timestampMs":1586726651593},{"description":"#🎪-general message [\"> Could maybe just create a re...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699007297099268116)","index":47,"timestampMs":1586726726556},{"description":"#🎪-general message [\"> <@!657069807505637397> \n> \n>...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699016223303794728)","index":48,"timestampMs":1586728854729},{"description":"#🎪-general message [\"( <@!250086586450968576> <@!65...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699020835096231937)","index":49,"timestampMs":1586729954266},{"description":"#🎪-general message [\"social structures emerge which...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699021694240686190)","index":50,"timestampMs":1586730159102},{"description":"#🎪-general message [\"> it's wayyyyy overly reductio...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699022762215211088)","index":51,"timestampMs":1586730413727},{"description":"#🎪-general message [\"> but we need to re-orient it ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699024432244588644)","index":52,"timestampMs":1586730811893},{"description":"#🎪-general message [\"let me try writing this in roa...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":53,"timestampMs":1586731027162},{"description":"#🎪-general message [\"> I'm gonna hang out in the vo...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699124769349566484)","index":54,"timestampMs":1586754734123},{"description":"#🎪-general message [\"What kinda questions <@5710232...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699137595724267520)","index":55,"timestampMs":1586757792169},{"description":"#🎪-general message [\"<@!464169801036726292> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699302777167413379)","index":56,"timestampMs":1586797174494},{"description":"#🎪-general message [\"<@!464169801036726292> I ran ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699304903796981771)","index":57,"timestampMs":1586797681522},{"description":"#🎪-general message [\"<@!363774203960360961> you mea...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699306499930980452)","index":58,"timestampMs":1586798062070},{"description":"#🎪-general message [\"> Hey! I’ve been setting up So...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699318638519255111)","index":59,"timestampMs":1586800956135},{"description":"#🎪-general message [\"> Nope it generates it for all...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699325373472702534)","index":60,"timestampMs":1586802561873},{"description":"#🎪-general message [\"This was the guide: https://gi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699325915578236949)","index":61,"timestampMs":1586802691121},{"description":"#🎪-general message [\"I saw that guide yesterday and...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699326575627206778)","index":62,"timestampMs":1586802848489},{"description":"#🎪-general message [\"<@!199630270285086720> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699342838756016128)","index":63,"timestampMs":1586806725921},{"description":"#🎪-general message [\"> I've adopted his fix and jus...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699358233437143163)","index":64,"timestampMs":1586810396299},{"description":"#🎪-general message [\"<@657069807505637397> was just...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699383579402174494)","index":65,"timestampMs":1586816439248},{"description":"#🎪-general message [\"<@665203331639148553> hey Luis...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699636647557464194)","index":66,"timestampMs":1586876775398},{"description":"#🎪-general message [\"<@!143776454050709505> <@!6337...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699696022477340735)","index":67,"timestampMs":1586890931482},{"description":"#🎪-general message [\"<@!699326460120530944> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/700038397376331798)","index":68,"timestampMs":1586972560019},{"description":"#🥇-leaderboard message [\"<@!571023281382227978> did you...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697073300131807274)","index":69,"timestampMs":1586265625747},{"description":"#🥇-leaderboard message [\"Hey <@440281764204642314> we a...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697081143551328256)","index":70,"timestampMs":1586267495764},{"description":"#🥇-leaderboard message [\"HI <@!571023281382227978> I'm ...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697318813192028200)","index":71,"timestampMs":1586324160622},{"description":"#🥇-leaderboard message [\"> HI <@!571023281382227978> I'...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697375832364023889)","index":72,"timestampMs":1586337755052},{"description":"#📢-announcements message [\"We have basic overview docs!\nh...\"](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":73,"timestampMs":1586643849022},{"description":"#📢-announcements message [\"We now have a very manual but ...\"](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":74,"timestampMs":1586793570421},{"description":"#⚔-dev message [\"no im trying another tac...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696427343220047872)","index":75,"timestampMs":1586111617618},{"description":"#⚔-dev message [\"Cool. <@!571023281382227978> u...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696440757908799568)","index":76,"timestampMs":1586114815929},{"description":"#⚔-dev message [\"just trying one more thing...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696441890048049232)","index":77,"timestampMs":1586115085852},{"description":"#⚔-dev message [\"<@!571023281382227978> does th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696452154268975225)","index":78,"timestampMs":1586117533033},{"description":"#⚔-dev message [\"<@!537858848912834561> had som...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696730851802742794)","index":79,"timestampMs":1586183979703},{"description":"#⚔-dev message [\"> <@!537858848912834561> had s...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696789204767866911)","index":80,"timestampMs":1586197892134},{"description":"#⚔-dev message [\"<@!571023281382227978> Do we h...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699020484167073792)","index":81,"timestampMs":1586729870598},{"description":"#⚔-dev message [\"sorry <@657069807505637397> co...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699122711745527878)","index":82,"timestampMs":1586754243552},{"description":"#⚔-dev message [\"wss://mainnet.infura.io/v3/<IN...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699123164340551691)","index":83,"timestampMs":1586754351459},{"description":"#⚔-dev message [\"<@!321092785921064961> how is ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699274952301609111)","index":84,"timestampMs":1586790540529},{"description":"#⚔-dev message [\"btw <@!657069807505637397> jus...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699275129204637708)","index":85,"timestampMs":1586790582706},{"description":"#⚔-dev message [\"Working out a few details! Try...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699275497984622760)","index":86,"timestampMs":1586790670630},{"description":"#⚔-dev message [\"> Working out a few details! T...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699276546795372595)","index":87,"timestampMs":1586790920686},{"description":"#⚔-dev message [\"> Yes. Something like !signup ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699277478530646016)","index":88,"timestampMs":1586791142829},{"description":"#⚔-dev message [\"> Interesting, had not seen th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699278809974833224)","index":89,"timestampMs":1586791460270},{"description":"#⚔-dev message [\"<@!571023281382227978> <@!3210...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699404949448163368)","index":90,"timestampMs":1586821534264},{"description":"#⚔-dev message [\"AFAIK modifying the format of ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699406916300046346)","index":91,"timestampMs":1586822003198},{"description":"#⚔-dev message [\"but as <@!118260545211072517> ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699407535194767410)","index":92,"timestampMs":1586822150754},{"description":"#⚔-dev message [\"> i don't recommend blacklisti...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699408033343733841)","index":93,"timestampMs":1586822269522},{"description":"#⚔-dev message [\"<@!440281764204642314> ran the...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699410487020093501)","index":94,"timestampMs":1586822854524},{"description":"#⚔-dev message [\"hey <@!571023281382227978>! ho...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699558251074682931)","index":95,"timestampMs":1586858084220},{"description":"#⚔-dev message [\"also just tried to list out th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699560532046250034)","index":96,"timestampMs":1586858628046},{"description":"#⚔-dev message [\"1\n> hey <@!571023281382227978>...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699939694221328435)","index":97,"timestampMs":1586949027353},{"description":"#⚔-dev message [\"<@!321092785921064961> do you ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700016555521736837)","index":98,"timestampMs":1586967352515},{"description":"#⚔-dev message [\"<@!321092785921064961> is the ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700064770367160361)","index":99,"timestampMs":1586978847830},{"description":"#⚔-dev message [\"The core aracred instance!...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700064920104075394)","index":100,"timestampMs":1586978883530},{"description":"#⚔-dev message [\"I didn't quite get this <@!657...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700073516900417556)","index":101,"timestampMs":1586980933166},{"description":"#⚔-dev message [\"> I didn't quite get this <@!6...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700078148615798814)","index":102,"timestampMs":1586982037453},{"description":"#⚔-dev message [\"<@!571023281382227978> regardi...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700083246087667833)","index":103,"timestampMs":1586983252785},{"description":"#⚔-dev message [\"> Hmm, could I see the credbot...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700085865933832252)","index":104,"timestampMs":1586983877405},{"description":"#⚔-dev message [\"Yup, looking at how the token ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700087985634541678)","index":105,"timestampMs":1586984382781},{"description":"#⚔-dev message [\"hey <@!321092785921064961>...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700345588725841990)","index":106,"timestampMs":1587045800144},{"description":"#⚔-dev message [\"<@!321092785921064961> To join...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700354840445976616)","index":107,"timestampMs":1587048005926},{"description":"#⚔-dev message [\"Community contributions 💯: ht...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700468593451597902)","index":108,"timestampMs":1587075126756},{"description":"#🆘-support message [\"That's a great question and on...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698667046661128244)","index":109,"timestampMs":1586645604530},{"description":"#🆘-support message [\"> Yeah but aren't those in `pr...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698672127418695751)","index":110,"timestampMs":1586646815877},{"description":"#🆘-support message [\"> Ah, so you can configure wei...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698673539011837994)","index":111,"timestampMs":1586647152427},{"description":"#🆘-support message [\"> If I set up a DAO today, can...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698683402920001637)","index":112,"timestampMs":1586649504166},{"description":"#🆘-support message [\"<@657069807505637397> Thanks f...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698956579168321617)","index":113,"timestampMs":1586714634459},{"description":"#🆘-support message [\"> <@!683892894767251489> We'll...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699017594287685672)","index":114,"timestampMs":1586729181597},{"description":"#🆘-support message [\"<@!537858848912834561> AraCred...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699283043940302898)","index":115,"timestampMs":1586792469726},{"description":"#🆘-support message [\"> sure, can do later on? On ou...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699284090607763506)","index":116,"timestampMs":1586792719271},{"description":"#🆘-support message [\"<@!420341518948237331> What's ...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699303864872075295)","index":117,"timestampMs":1586797433823},{"description":"#🆘-support message [\"<@!537858848912834561> To conf...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699352914476400712)","index":118,"timestampMs":1586809128160},{"description":"#💸-cryptoeconomics message [\"<@!657069807505637397> agenda ...\"](https://discordapp.com/channels/695344751490236486/698942081858666527/699821888431587439)","index":119,"timestampMs":1586920940264},{"description":"#💸-cryptoeconomics message [\"Cool! Was thinking to get the ...\"](https://discordapp.com/channels/695344751490236486/698942081858666527/699822779670724650)","index":120,"timestampMs":1586921152752},{"description":"#bot-testing message [\"cc <@!657069807505637397>...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700033440564641854)","index":121,"timestampMs":1586971378223},{"description":"#bot-testing message [\"<@!321092785921064961> gave yo...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700036022368731256)","index":122,"timestampMs":1586971993773},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700038868707180644)","index":123,"timestampMs":1586972672393},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700039441799970969)","index":124,"timestampMs":1586972809029},{"description":"#bot-testing message [\"Also I think for discord, mayb...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040376085381152)","index":125,"timestampMs":1586973031780},{"description":"#bot-testing message [\"Yup getting the id would be th...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":126,"timestampMs":1586973160965},{"description":"#bot-testing message [\"> Yep we can; if we do so thou...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040992916766780)","index":127,"timestampMs":1586973178844},{"description":"#bot-testing message [\"<@657069807505637397>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044206176993470)","index":128,"timestampMs":1586973944945},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044421760286721)","index":129,"timestampMs":1586973996344},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044496049799228)","index":130,"timestampMs":1586974014056},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044548411490335)","index":131,"timestampMs":1586974026540},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044635619328131)","index":132,"timestampMs":1586974047332},{"description":"#bot-testing message [\"<@657069807505637397>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044689285316738)","index":133,"timestampMs":1586974060127},{"description":"#bot-testing message [\"<@363774203960360961>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049028251123832)","index":134,"timestampMs":1586975094617},{"description":"#bot-testing message [\"<@363774203960360961>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049257490808933)","index":135,"timestampMs":1586975149272},{"description":"#bot-testing message [\"<@363774203960360961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049378643017889)","index":136,"timestampMs":1586975178157},{"description":"#bot-testing message [\"Haha, that won't work for too ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700051768008114186)","index":137,"timestampMs":1586975747826},{"description":"#bot-testing message [\"> Haha, that won't work for to...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700055780807802900)","index":138,"timestampMs":1586976704552},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700056792524128306)","index":139,"timestampMs":1586976945764},{"description":"#bot-testing message [\"<@657069807505637397>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059334679330946)","index":140,"timestampMs":1586977551861},{"description":"#bot-testing message [\"<@657069807505637397>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059353306234910)","index":141,"timestampMs":1586977556302},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059384751063091)","index":142,"timestampMs":1586977563799},{"description":"#bot-testing message [\"<@!657069807505637397> , don't...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059438136033361)","index":143,"timestampMs":1586977576527},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059438526103572)","index":144,"timestampMs":1586977576620},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059538023514154)","index":145,"timestampMs":1586977600342},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700061097583050871)","index":146,"timestampMs":1586977972170},{"description":"#bot-testing message [\"> Yup; however, we're gonna ma...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062058405953678)","index":147,"timestampMs":1586978201248},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062189503119381)","index":148,"timestampMs":1586978232504},{"description":"#bot-testing message [\"<@363774203960360961>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062400774275204)","index":149,"timestampMs":1586978282875},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700063628711166054)","index":150,"timestampMs":1586978575638},{"description":"#bot-testing message [\"<@!321092785921064961> is the ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700064631778967634)","index":151,"timestampMs":1586978814788},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700064632144003103)","index":152,"timestampMs":1586978814875},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700118599003668510)","index":153,"timestampMs":1586991681577},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700335319349985310)","index":154,"timestampMs":1587043351734},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700335919315550299)","index":155,"timestampMs":1587043494777},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700365992571699350)","index":156,"timestampMs":1587050664800},{"description":"#bot-testing message [\"<@665203331639148553>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700366555233517630)","index":157,"timestampMs":1587050798949},{"description":"#bot-testing message [\"<@665203331639148553>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700367514638483537)","index":158,"timestampMs":1587051027689},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700369922630615040)","index":159,"timestampMs":1587051601799},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700370207419662458)","index":160,"timestampMs":1587051669698},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700370372230643763)","index":161,"timestampMs":1587051708992},{"description":"#bot-testing message [\"<@!699326460120530944> you da ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371208880914563)","index":162,"timestampMs":1587051908465},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371209241624656)","index":163,"timestampMs":1587051908551},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371558480216124)","index":164,"timestampMs":1587051991816},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397237930295386)","index":165,"timestampMs":1587058114274},{"description":"#bot-testing message [\"<@!321092785921064961> can you...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397481799974962)","index":166,"timestampMs":1587058172417},{"description":"#bot-testing message [\"<@665203331639148553>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397482362011769)","index":167,"timestampMs":1587058172551},{"description":"#bot-testing message [\"<@474405294307278880>, Update ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397866581229620)","index":168,"timestampMs":1587058264156},{"description":"#bot-testing message [\"<@474405294307278880>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397927478067221)","index":169,"timestampMs":1587058278675},{"description":"#bot-testing message [\"👀 nice one <@!474405294307278...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397997707755530)","index":170,"timestampMs":1587058295419},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398207733334077)","index":171,"timestampMs":1587058345493},{"description":"#bot-testing message [\"<@!321092785921064961> I just ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398301412982965)","index":172,"timestampMs":1587058367828},{"description":"#bot-testing message [\"<@665203331639148553>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398301727555604)","index":173,"timestampMs":1587058367903},{"description":"#bot-testing message [\"Btw <@!665203331639148553> idk...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700399163313094746)","index":174,"timestampMs":1587058573321},{"description":"Reacted `❤️` to message [695669843034243134](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":175,"timestampMs":1585931015500},{"description":"Reacted `👍` to message [696454968831508630](https://discordapp.com/channels/695344751490236486/695344752031432766/696454968831508630)","index":176,"timestampMs":1586118204077},{"description":"Reacted `👍` to message [696455224532926464](https://discordapp.com/channels/695344751490236486/695344752031432766/696455224532926464)","index":177,"timestampMs":1586118265041},{"description":"Reacted `👍` to message [699021694240686190](https://discordapp.com/channels/695344751490236486/695344752031432766/699021694240686190)","index":178,"timestampMs":1586730159102},{"description":"Reacted `👍` to message [699025335148216410](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":179,"timestampMs":1586731027162},{"description":"Reacted `👍` to message [695669843034243134](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":180,"timestampMs":1585931015500},{"description":"Reacted `👍` to message [699025335148216410](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":181,"timestampMs":1586731027162},{"description":"Reacted `👍` to message [699326575627206778](https://discordapp.com/channels/695344751490236486/695344752031432766/699326575627206778)","index":182,"timestampMs":1586802848489},{"description":"Reacted `💯` to message [696730540039995493](https://discordapp.com/channels/695344751490236486/695344752031432766/696730540039995493)","index":183,"timestampMs":1586183905373},{"description":"Reacted `💯` to message [698965418370400296](https://discordapp.com/channels/695344751490236486/695344752031432766/698965418370400296)","index":184,"timestampMs":1586716741889},{"description":"Reacted `🔥` to message [698969730580742174](https://discordapp.com/channels/695344751490236486/695344752031432766/698969730580742174)","index":185,"timestampMs":1586717770000},{"description":"Reacted `🔥` to message [698973708316049488](https://discordapp.com/channels/695344751490236486/695344752031432766/698973708316049488)","index":186,"timestampMs":1586718718366},{"description":"Reacted `🔥` to message [698921390845198426](https://discordapp.com/channels/695344751490236486/695344752031432766/698921390845198426)","index":187,"timestampMs":1586706244909},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":188,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":189,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":190,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":191,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":192,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":193,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":194,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":195,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":196,"timestampMs":1586643849022},{"description":"Reacted `👍` to message [696427343220047872](https://discordapp.com/channels/695344751490236486/696420039141752863/696427343220047872)","index":197,"timestampMs":1586111617618},{"description":"Reacted `👍` to message [696441890048049232](https://discordapp.com/channels/695344751490236486/696420039141752863/696441890048049232)","index":198,"timestampMs":1586115085852},{"description":"Reacted `👍` to message [699123164340551691](https://discordapp.com/channels/695344751490236486/696420039141752863/699123164340551691)","index":199,"timestampMs":1586754351459},{"description":"Reacted `👍` to message [700087985634541678](https://discordapp.com/channels/695344751490236486/696420039141752863/700087985634541678)","index":200,"timestampMs":1586984382781},{"description":"Reacted `🔥` to message [699560532046250034](https://discordapp.com/channels/695344751490236486/696420039141752863/699560532046250034)","index":201,"timestampMs":1586858628046},{"description":"Reacted `🔥` to message [699275497984622760](https://discordapp.com/channels/695344751490236486/696420039141752863/699275497984622760)","index":202,"timestampMs":1586790670630},{"description":"Reacted `🔥` to message [700064920104075394](https://discordapp.com/channels/695344751490236486/696420039141752863/700064920104075394)","index":203,"timestampMs":1586978883530},{"description":"Reacted `👍` to message [699284090607763506](https://discordapp.com/channels/695344751490236486/696420197644632116/699284090607763506)","index":204,"timestampMs":1586792719271},{"description":"Reacted `👍` to message [699822779670724650](https://discordapp.com/channels/695344751490236486/698942081858666527/699822779670724650)","index":205,"timestampMs":1586921152752},{"description":"Reacted `👍` to message [700040376085381152](https://discordapp.com/channels/695344751490236486/700023168995295233/700040376085381152)","index":206,"timestampMs":1586973031780},{"description":"Reacted `💯` to message [700040917926543422](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":207,"timestampMs":1586973160965},{"description":"Reacted `💯` to message [700040917926543422](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":208,"timestampMs":1586973160965},{"description":"Reacted `🔥` to message [700039441799970969](https://discordapp.com/channels/695344751490236486/700023168995295233/700039441799970969)","index":209,"timestampMs":1586972809029},{"description":"[comment](https://github.com/aracred/AraCred/issues/14#issuecomment-612693703) on [#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":746,"timestampMs":1586735225000},{"description":"[comment](https://github.com/aracred/AraCred/issues/14#issuecomment-612962510) on [#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":747,"timestampMs":1586793675000},{"description":"[comment](https://github.com/aracred/AraCred/issues/16#issuecomment-613151713) on [#16](https://github.com/aracred/AraCred/issues/16): AraCred Dogfooding","index":748,"timestampMs":1586821838000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-612842722) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":749,"timestampMs":1586773257000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-612918834) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":750,"timestampMs":1586787682000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-613069946) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":751,"timestampMs":1586808032000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613141085) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":752,"timestampMs":1586819514000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613146304) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":753,"timestampMs":1586820570000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613226248) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":754,"timestampMs":1586840296000},{"description":"[comment](https://github.com/aracred/AraCred/issues/25#issuecomment-613347004) on [#25](https://github.com/aracred/AraCred/issues/25): AraCred MVP","index":755,"timestampMs":1586858608000},{"description":"[comment](https://github.com/aracred/AraCred/issues/26#issuecomment-613797792) on [#26](https://github.com/aracred/AraCred/issues/26): Simple Token Calculations","index":756,"timestampMs":1586922019000},{"description":"[comment](https://github.com/aracred/TheSource/issues/3#issuecomment-613030762) on [#3](https://github.com/aracred/TheSource/issues/3): GUIDE: Setting up a Discord server with SourceCred and GitHub actions","index":757,"timestampMs":1586802750000},{"description":"[comment](https://github.com/aracred/bot/issues/3#issuecomment-614314292) on [#3](https://github.com/aracred/bot/issues/3): Add whitelisted channels environment variable","index":758,"timestampMs":1586990245000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-612563994) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":759,"timestampMs":1586666872000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-612990333) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":760,"timestampMs":1586797413000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613020677) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":761,"timestampMs":1586801390000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613024850) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":762,"timestampMs":1586801948000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613026757) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":763,"timestampMs":1586802204000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613028322) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":764,"timestampMs":1586802422000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-614088358) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":765,"timestampMs":1586962450000},{"description":"[comment](https://github.com/aracred/onboarding/issues/2#issuecomment-612630503) on [#2](https://github.com/aracred/onboarding/issues/2): AraCred Deployment","index":766,"timestampMs":1586704028000},{"description":"[comment](https://github.com/aracred/onboarding/issues/3#issuecomment-612642927) on [#3](https://github.com/aracred/onboarding/issues/3): User Onboarding Bot","index":767,"timestampMs":1586709561000},{"description":"[comment](https://github.com/aracred/onboarding/issues/4#issuecomment-613343876) on [#4](https://github.com/aracred/onboarding/issues/4): User Onboarding Survey","index":768,"timestampMs":1586858205000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612843090) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":769,"timestampMs":1586773337000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612844672) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":770,"timestampMs":1586773655000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612910606) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":771,"timestampMs":1586786432000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612911587) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":772,"timestampMs":1586786582000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612939366) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":773,"timestampMs":1586790511000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612942113) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":774,"timestampMs":1586790870000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-614058561) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":775,"timestampMs":1586959270000},{"description":"[comment](https://github.com/aracred/AraCred/pull/20#issuecomment-613089159) on [#20](https://github.com/aracred/AraCred/pull/20): Add Evalir to Aracred","index":776,"timestampMs":1586810690000},{"description":"[comment](https://github.com/aracred/bot/pull/9#issuecomment-614948916) on [#9](https://github.com/aracred/bot/pull/9): Added command namespace recognition - !ac [command]","index":777,"timestampMs":1587079943000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850216) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":778,"timestampMs":1587071400000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850385) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":779,"timestampMs":1587071419000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850667) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":780,"timestampMs":1587071453000},{"description":"[02e3a39](https://github.com/aracred/onboarding/commit/02e3a39d76183975fa9a0671de0c7922274b6abc): Initial commit","index":781,"timestampMs":1586666528000},{"description":"[1a16f1e](https://github.com/aracred/leaderboard/commit/1a16f1ec50e59e3baf9462677fa2c4f03ee2f9c8): Initial commit","index":782,"timestampMs":1586706188000},{"description":"[1a21759](https://github.com/aracred/comms/commit/1a21759b0bf3dbf3f524a23bf10c8e4a114def8c): Initial commit","index":783,"timestampMs":1586709195000},{"description":"[89f7cc8](https://github.com/aracred/governance/commit/89f7cc8cbfd2fe93bcdb22e979f918a288bd8668): Update README.md","index":784,"timestampMs":1586710102000},{"description":"[b48eec0](https://github.com/aracred/governance/commit/b48eec0b0acb2c42b9307e89f0c50fcd2b5e3fe9): Initial commit","index":785,"timestampMs":1586709961000},{"description":"[169704b](https://github.com/aracred/bot/commit/169704b1d09d4498ff0eaf2276bc40e79fffdf7e): Add bot guard for infinite loops","index":786,"timestampMs":1586921892000},{"description":"[1d8ee2b](https://github.com/aracred/bot/commit/1d8ee2b3aa6e25bcf60ec6e52bf5328c0866cdc5): Add testing for parsers & several bot enhancements","index":787,"timestampMs":1586930578000},{"description":"[23d2d9d](https://github.com/aracred/bot/commit/23d2d9d76214f6b6309676e2d369fe22f495943c): Rename procfile to Procfile","index":788,"timestampMs":1586920791000},{"description":"[2ac1a7e](https://github.com/aracred/bot/commit/2ac1a7e110486f19483abeff54c243335640c923): Update package.json","index":789,"timestampMs":1586921871000},{"description":"[2b91470](https://github.com/aracred/bot/commit/2b91470d79d6e707d2e8cb3a794ebe8c4d7b3484): Update procfile","index":790,"timestampMs":1586920549000},{"description":"[2c407f3](https://github.com/aracred/bot/commit/2c407f36d0c5b27d2c474b335cabb81cfe2edeca): v0.0.2 : add address command","index":791,"timestampMs":1586839193000},{"description":"[396e5f7](https://github.com/aracred/bot/commit/396e5f791be1c3cf258b08afc6111cea8a409634): Add hooks for linting, testing","index":792,"timestampMs":1586916947000},{"description":"[436819f](https://github.com/aracred/bot/commit/436819fc13564c1c553d1d70390daff05a9052e9): Setup jest config","index":793,"timestampMs":1586919065000},{"description":"[59aa572](https://github.com/aracred/bot/commit/59aa572835669dee12a533857e417b17ba7b45e5): Devops: Add monitoring logs to commands (#4)","index":794,"timestampMs":1586971104000},{"description":"[6738048](https://github.com/aracred/bot/commit/67380485711017726e26a1687668d3d85b0e5d41): Improve help command","index":795,"timestampMs":1586957209000},{"description":"[680e650](https://github.com/aracred/bot/commit/680e6502d527be2ddbd2bd73be5ddce9c5914e9b): Add utilities for development","index":796,"timestampMs":1586915756000},{"description":"[ad563e1](https://github.com/aracred/bot/commit/ad563e12ffae5d7b53764f2709b2da47a17aa18c): Remove git add from lint-staged","index":797,"timestampMs":1586916992000},{"description":"[af62937](https://github.com/aracred/bot/commit/af6293708734a500d9aeb65ece80c20d28d973d3): Create ci.yml","index":798,"timestampMs":1586932748000},{"description":"[b72e98f](https://github.com/aracred/bot/commit/b72e98f338ce136d49bbc775464fbe071df8c431): Update README.md","index":799,"timestampMs":1586934527000},{"description":"[b8c4dd2](https://github.com/aracred/bot/commit/b8c4dd20fe0e1d3e66edf0ecada1d03544106dbc): Made copies more user friendly","index":800,"timestampMs":1587052319000},{"description":"[b3e0e30](https://github.com/aracred/bot/commit/b3e0e30623418aaf8af913aed3c78c36e5e7c742): Validation: validate ethereum address (#8)","index":801,"timestampMs":1587075097000},{"description":"[d45cdea](https://github.com/aracred/bot/commit/d45cdeaaabc568712db4fd59c157084fc4819e19): Initial commit","index":802,"timestampMs":1586805309000},{"description":"[d601ad0](https://github.com/aracred/bot/commit/d601ad079de95e29fe5bd99dd225621e193b09a8): Add other utilties, procfile for heroku deployment","index":803,"timestampMs":1586918718000},{"description":"[d8f4083](https://github.com/aracred/bot/commit/d8f4083966d599198ff8f988f55ced0e2b91ba98): v0.0.1","index":804,"timestampMs":1586831849000},{"description":"[ddad212](https://github.com/aracred/bot/commit/ddad2121732e1f0646c5ab6d3d8fc51c431f94b8): Update help.js","index":805,"timestampMs":1586977731000},{"description":"[de56e09](https://github.com/aracred/bot/commit/de56e092581eb21affd70f681de349d461487d47): Update Procfile","index":806,"timestampMs":1586921823000},{"description":"[e41eb25](https://github.com/aracred/bot/commit/e41eb256be1cff6f8173bf1b4ab1e08d82680377): Merge branch 'master' of https://github.com/aracred/bot","index":807,"timestampMs":1586960050000},{"description":"[e370701](https://github.com/aracred/bot/commit/e3707010bd6cff203cbe2450f48d2ee7bbc5d155): Create README.md","index":808,"timestampMs":1586933937000},{"description":"[f8cc3c0](https://github.com/aracred/bot/commit/f8cc3c0cfe61b256ef079488a26d06b59f6f8ca0): Add .env.sample","index":809,"timestampMs":1586832132000},{"description":"[f1ec698](https://github.com/aracred/bot/commit/f1ec698041e4fdef5931f7928a751a8a45433b9f): Improve whitelisting","index":810,"timestampMs":1586958454000},{"description":"[05c78a8](https://github.com/aracred/website/commit/05c78a85d3b82074eb0e966c43eaf29f53e39426): updated secrets guide","index":811,"timestampMs":1586730565000},{"description":"[031a68e](https://github.com/aracred/website/commit/031a68eb5a45b70c806197b47783b1b4ae4332f0): design goals overview","index":812,"timestampMs":1586643786000},{"description":"[0c44b7c](https://github.com/aracred/website/commit/0c44b7c5b7ac2243b2fa984a6abc9c91762a8a33): Merge pull request #9 from aracred/docs2","index":813,"timestampMs":1586664558000},{"description":"[15e6db6](https://github.com/aracred/website/commit/15e6db685e730aa55697d6fc8f60e9006732d2db): Merge pull request #1 from aracred/docusaurus","index":814,"timestampMs":1586566020000},{"description":"[16456a0](https://github.com/aracred/website/commit/16456a0e6dce09102122b50f42b185c330bb7b25): checkpoint","index":815,"timestampMs":1586710826000},{"description":"[18c5aee](https://github.com/aracred/website/commit/18c5aee0a819fd4f7877321af5fd04791f85c6f8): created manual deployment guide draft","index":816,"timestampMs":1586727748000},{"description":"[120b10d](https://github.com/aracred/website/commit/120b10d34d5e804b21984569c113e37036efe669): removed blog from footer","index":817,"timestampMs":1586570955000},{"description":"[26b69c0](https://github.com/aracred/website/commit/26b69c05b19e8c57f2d16f77ab4d86b76247ce1b): updated diagrams and whiteboard sessions","index":818,"timestampMs":1586662685000},{"description":"[2a6a498](https://github.com/aracred/website/commit/2a6a498e1f06f55bc8d72380017b4d4060e27123): Create CNAME","index":819,"timestampMs":1586127122000},{"description":"[2b6ed00](https://github.com/aracred/website/commit/2b6ed00bd26907f91649e266613daba56cbaa0ee): stashing notes","index":820,"timestampMs":1586658983000},{"description":"[2cee732](https://github.com/aracred/website/commit/2cee732bc11b712814855cfb1d9b5b279cef6fb9): Delete CNAME","index":821,"timestampMs":1586566694000},{"description":"[2d9e5bd](https://github.com/aracred/website/commit/2d9e5bd17dbe78235bca6bfd44b6a910d3c4a951): Merge pull request #6 from aracred/docs2","index":822,"timestampMs":1586656936000},{"description":"[2e4d02b](https://github.com/aracred/website/commit/2e4d02b5022b744b43eba4a032fa855b765aa0ad): Merge pull request #14 from aracred/docs2","index":823,"timestampMs":1586797014000},{"description":"[37e3b72](https://github.com/aracred/website/commit/37e3b7251566699d4341b3bdbb81ec8f554f7d87): Merge pull request #13 from aracred/docs2","index":824,"timestampMs":1586727823000},{"description":"[39ac367](https://github.com/aracred/website/commit/39ac367cc0a3e55366f190fe158a8517f97c2778): Update README.md","index":825,"timestampMs":1586103464000},{"description":"[30d221d](https://github.com/aracred/website/commit/30d221dce50b378b1c7305bda09bea3f77887415): didn't actually add users section","index":826,"timestampMs":1586633871000},{"description":"[49af56b](https://github.com/aracred/website/commit/49af56b16491699e672947ed52ce86dcb3f9d9c2): updated docs to include links to baseURL","index":827,"timestampMs":1586647160000},{"description":"[4b792e8](https://github.com/aracred/website/commit/4b792e8ce9c473dd059f633bec6659a18a6d8ff7): checkpoint","index":828,"timestampMs":1586660251000},{"description":"[51c24fd](https://github.com/aracred/website/commit/51c24fd07be9e40f534f48d43f936d829ac7b085): added tabs!","index":829,"timestampMs":1586649927000},{"description":"[5a3bda0](https://github.com/aracred/website/commit/5a3bda08dd0c3b937345c449229b07241d70fb09): Fix hero button in dark mode","index":830,"timestampMs":1586855777000},{"description":"[5e5171d](https://github.com/aracred/website/commit/5e5171d6fb098184d18a44589e6cd4fd72c89c80): getting started button link update","index":831,"timestampMs":1586571027000},{"description":"[61741f2](https://github.com/aracred/website/commit/61741f2ee4388880504f3a299dbd9c11698cc7dd): giving credit where credit is due","index":832,"timestampMs":1586644808000},{"description":"[62452c3](https://github.com/aracred/website/commit/62452c343ffd843e938714bc2e87d5214d7dd315): added a gratitude section","index":833,"timestampMs":1586650718000},{"description":"[6caa3ed](https://github.com/aracred/website/commit/6caa3ed4ed86f8414354719138e0121db2d6a0dc): Initial commit","index":834,"timestampMs":1586103441000},{"description":"[6d3765a](https://github.com/aracred/website/commit/6d3765a6c17e93aaddcd0f3fb8ace45c20bda183): Update README.md","index":835,"timestampMs":1586568293000},{"description":"[6e7bfcd](https://github.com/aracred/website/commit/6e7bfcd7b00408f64472201ac06ea499e02e6fad): updated docs to mdx","index":836,"timestampMs":1586646704000},{"description":"[6f93833](https://github.com/aracred/website/commit/6f93833ab9fbe162b81bb768df2d85c30ad06ab8): Merge pull request #8 from aracred/docs2","index":837,"timestampMs":1586663015000},{"description":"[7cd874a](https://github.com/aracred/website/commit/7cd874acd8a0f9009911452d1c0b363cb13f6669): _","index":838,"timestampMs":1586639136000},{"description":"[85eeea1](https://github.com/aracred/website/commit/85eeea117f1160d5b9da37473b35598a7c76b5f2): added DAO stuff","index":839,"timestampMs":1586663769000},{"description":"[862fd7f](https://github.com/aracred/website/commit/862fd7fa57bf683b777fc8f3789b1df4aea08e9f): updated stuff","index":840,"timestampMs":1586652307000},{"description":"[892f2bf](https://github.com/aracred/website/commit/892f2bf564a1dbbc4215f2ee677ac9fc2aa763e3): added docs placeholders","index":841,"timestampMs":1586570353000},{"description":"[97158bd](https://github.com/aracred/website/commit/97158bddc34b68675ca0d7376d36259a03aef6ac): added AraCred overview","index":842,"timestampMs":1586638395000},{"description":"[9b553ff](https://github.com/aracred/website/commit/9b553ff5e3ec727ed0dd45321971a9911a1f04ad): the code works!","index":843,"timestampMs":1586657067000},{"description":"[9fc6edf](https://github.com/aracred/website/commit/9fc6edf1983584d9e8336ae9cba525ba92e3249b): generalized the token market","index":844,"timestampMs":1586649206000},{"description":"[a631821](https://github.com/aracred/website/commit/a631821f95e1a3b679073cd25647784f863699ec): removed scratchpad","index":845,"timestampMs":1586729040000},{"description":"[a794a7d](https://github.com/aracred/website/commit/a794a7d8a4034af56c031a5a4a85300ad488871e): moved stuff to main directory","index":846,"timestampMs":1586567498000},{"description":"[a86004a](https://github.com/aracred/website/commit/a86004ae7a81b6150ca9decebdd05ab7d4151214): Beautified the website!","index":847,"timestampMs":1586855462000},{"description":"[a180ef1](https://github.com/aracred/website/commit/a180ef16d0fb9e6adbb95731fcdd0e84955805d3): _","index":848,"timestampMs":1586568912000},{"description":"[a2421f5](https://github.com/aracred/website/commit/a2421f56156e52f5b7138ff17678e3c13e13a2f1): basic aragon and sourcecred overviews","index":849,"timestampMs":1586640470000},{"description":"[a380b67](https://github.com/aracred/website/commit/a380b67f78535ff8cd03945a60f98400e084a525): Update README.md","index":850,"timestampMs":1586111771000},{"description":"[aa9b13f](https://github.com/aracred/website/commit/aa9b13f64574bcf35312c9c6e828986ce75aff16): _","index":851,"timestampMs":1586569076000},{"description":"[ace98dc](https://github.com/aracred/website/commit/ace98dcfcfaeffae7c2fc2618af5281d06129330): starting to add market dynamic info","index":852,"timestampMs":1586648621000},{"description":"[bb9844b](https://github.com/aracred/website/commit/bb9844bd3a996039c00d44054f3450fcdc905d22): Update README.md","index":853,"timestampMs":1586111689000},{"description":"[bd29ad9](https://github.com/aracred/website/commit/bd29ad9bca1ac4c5f098c091bce6ea0824776115): added carl to the thanks section","index":854,"timestampMs":1586651543000},{"description":"[c4fa771](https://github.com/aracred/website/commit/c4fa771d6e61d74c5f1e702dd238ebbb4b538be8): added whiteboard session to notes","index":855,"timestampMs":1586661631000},{"description":"[c515036](https://github.com/aracred/website/commit/c515036f8ba1937cda94092e87b0a13545d86829): added note about next action items for deployment docs","index":856,"timestampMs":1586739277000},{"description":"[c2bf0a1](https://github.com/aracred/website/commit/c2bf0a118855a87f962a7bda788c73120c64940b): added a cryptoeconomics 101 blog post","index":857,"timestampMs":1586644660000},{"description":"[c3d5044](https://github.com/aracred/website/commit/c3d50445a0194dac7d52baaaa8aa3dbf2bd77173): added guide on approving token minting","index":858,"timestampMs":1586792089000},{"description":"[cda86c7](https://github.com/aracred/website/commit/cda86c72f131bd0ba804c57d20be41d8f017cf3d): fixed edit link thing","index":859,"timestampMs":1586645107000},{"description":"[d49ea3b](https://github.com/aracred/website/commit/d49ea3b27586437f262b74132224b280597e67bd): before adding live code plugin","index":860,"timestampMs":1586656870000},{"description":"[d9900e9](https://github.com/aracred/website/commit/d9900e922c90ce1d244761f1e2ad2fc4fb65f298): added guide on viewing your cred graph","index":861,"timestampMs":1586790290000},{"description":"[d1a721f](https://github.com/aracred/website/commit/d1a721f8eed2805dd0c85d8d9fef06032f04c056): Update README.md","index":862,"timestampMs":1586571301000},{"description":"[db97114](https://github.com/aracred/website/commit/db97114fd0dbcd580c0a88991f4b6991d0bef4e5): starting to docusaurus","index":863,"timestampMs":1586565903000},{"description":"[dd68745](https://github.com/aracred/website/commit/dd687457b7a8178a907116c7880a1bb498bb4131): Merge pull request #3 from aracred/users-showcase","index":864,"timestampMs":1586633977000},{"description":"[df4aca3](https://github.com/aracred/website/commit/df4aca3876a771513b7e5d9a0c28517746508961): now the edit link is fixed","index":865,"timestampMs":1586645253000},{"description":"[e97f15b](https://github.com/aracred/website/commit/e97f15b28e12292f7df8de6515a27b63f989acfb): updated README deployment instructions","index":866,"timestampMs":1586567811000},{"description":"[e9a6820](https://github.com/aracred/website/commit/e9a68209df1f07b4f9f28319e98dcade12ebde80): updated images","index":867,"timestampMs":1586664528000},{"description":"[e2dddf8](https://github.com/aracred/website/commit/e2dddf8e3303043dae6bf8efc44777965d5fde9a): Merge pull request #4 from aracred/docs2","index":868,"timestampMs":1586645187000},{"description":"[ee80ee1](https://github.com/aracred/website/commit/ee80ee18c4c10447c5e3d180c7cb87d177cf6bab): Better paddings and illustrations","index":869,"timestampMs":1586874980000},{"description":"[f9f8620](https://github.com/aracred/website/commit/f9f862051f1b8310f274b4e8e8c20604a75bda59): Merge pull request #5 from aracred/docs2","index":870,"timestampMs":1586654110000},{"description":"[fcacf68](https://github.com/aracred/website/commit/fcacf68e748f6ee1883db51392267fc8537db08b): updated docs","index":871,"timestampMs":1586570850000},{"description":"[07e0e5f](https://github.com/aracred/TheSource/commit/07e0e5f00e18e00a12892b47bd3f5b87418377d5): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":872,"timestampMs":1584166244000},{"description":"[014093e](https://github.com/aracred/TheSource/commit/014093e17900e748bb8f82656443ec621bd8a658): Fix: trigger on master / cronjob","index":873,"timestampMs":1582978132000},{"description":"[0235016](https://github.com/aracred/TheSource/commit/02350169d0e77e280968a062a1e98a60a0d4c5d8): Update generate-cred.yml","index":874,"timestampMs":1586104482000},{"description":"[0245a40](https://github.com/aracred/TheSource/commit/0245a4002a35c2adccfed1f68a675c30ba871ba5): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":875,"timestampMs":1583453629000},{"description":"[0e46884](https://github.com/aracred/TheSource/commit/0e468843191ad3a24ff5b803b2e388a12e88a289): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":876,"timestampMs":1585678434000},{"description":"[1582ec3](https://github.com/aracred/TheSource/commit/1582ec34530ff6b7055382319336acc3f82de567): Merge pull request #22 from burrrata/patch-1","index":877,"timestampMs":1583619788000},{"description":"[15a8127](https://github.com/aracred/TheSource/commit/15a8127bc5402c7224bc592f890a5bd7f793c6a5): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":878,"timestampMs":1585354520000},{"description":"[1823aa7](https://github.com/aracred/TheSource/commit/1823aa73078796ecf98dd56d9c134ccf2192e686): Add new members and update repo config","index":879,"timestampMs":1585275196000},{"description":"[11fcd09](https://github.com/aracred/TheSource/commit/11fcd09a0cde08af08b5c5c951f54c150cf47ea1): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":880,"timestampMs":1585246440000},{"description":"[1222e49](https://github.com/aracred/TheSource/commit/1222e49b4269f15b2c71cfe4b62b1333abeea581): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":881,"timestampMs":1583367223000},{"description":"[12cf0f1](https://github.com/aracred/TheSource/commit/12cf0f16d406f14c2597abc130c4d2bfa9927f32): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":882,"timestampMs":1585807902000},{"description":"[12ddd4e](https://github.com/aracred/TheSource/commit/12ddd4e35607c0184b898c898e26e45c6017642d): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":883,"timestampMs":1584727971000},{"description":"[1363441](https://github.com/aracred/TheSource/commit/13634414337e730fbcb403e2657a8007347ddd8d): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":884,"timestampMs":1585268012000},{"description":"[13fc50d](https://github.com/aracred/TheSource/commit/13fc50d22e2353cf2bb38948cae4fb5fb591ce6c): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":885,"timestampMs":1584490521000},{"description":"[1a79294](https://github.com/aracred/TheSource/commit/1a7929462fc35448408f0d854a6c8c898c2db94f): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":886,"timestampMs":1584425424000},{"description":"[1b5127e](https://github.com/aracred/TheSource/commit/1b5127e0416b329fc4dcd1d988d29489bea9016f): Merge pull request #21 from c0mput3rxz/patch-1","index":887,"timestampMs":1583545099000},{"description":"[1cac15e](https://github.com/aracred/TheSource/commit/1cac15ecae5e636fd5d049fc5993ccd113126e41): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":888,"timestampMs":1584404096000},{"description":"[1dc4a2c](https://github.com/aracred/TheSource/commit/1dc4a2c23525043a7b6e32a79837cb6a5a62fd97): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":889,"timestampMs":1584987191000},{"description":"[1eed38c](https://github.com/aracred/TheSource/commit/1eed38c4cebd63ab6fc9537564a5304a870caa0c): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":890,"timestampMs":1585872826000},{"description":"[1f350ea](https://github.com/aracred/TheSource/commit/1f350ead22cb503932ec36b9d21b735eb97eb256): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":891,"timestampMs":1584231333000},{"description":"[25c16bb](https://github.com/aracred/TheSource/commit/25c16bb85801279196018b44ec0db0834fadc4a2): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":892,"timestampMs":1584079976000},{"description":"[27b2bf3](https://github.com/aracred/TheSource/commit/27b2bf3d7da83e04295aa1c2297e50ce8157f435): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":893,"timestampMs":1584555406000},{"description":"[28b0e3f](https://github.com/aracred/TheSource/commit/28b0e3f2d8fd42569eb803d10435aa8c0edf28f4): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":894,"timestampMs":1585159980000},{"description":"[2074791](https://github.com/aracred/TheSource/commit/2074791c680ee3d896c6c819ee0244719a7e510c): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":895,"timestampMs":1582941733000},{"description":"[21196b9](https://github.com/aracred/TheSource/commit/21196b9342e552cc4fc6a9f213ea42768f3590d6): Merge pull request #1 from pythonpete32/patch-2","index":896,"timestampMs":1586104041000},{"description":"[2251687](https://github.com/aracred/TheSource/commit/225168780b86a4b41d38845653c5d8759d1d37ad): Automated deployment to update cred in /github/workspace/docs 2020-02-17","index":897,"timestampMs":1581915151000},{"description":"[22f57e7](https://github.com/aracred/TheSource/commit/22f57e7b323b0800c218b270980286c105ff7760): Update README.md","index":898,"timestampMs":1586106320000},{"description":"[2a1204b](https://github.com/aracred/TheSource/commit/2a1204b44f44d6d93cf952e1804aef25ffbdd78f): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":899,"timestampMs":1585365876000},{"description":"[2d44191](https://github.com/aracred/TheSource/commit/2d44191a996951ccbed0009280899614d63174c9): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":900,"timestampMs":1585276073000},{"description":"[2f42a2a](https://github.com/aracred/TheSource/commit/2f42a2a3916fe6ede97f1fac9adc1897fcbaa2be): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":901,"timestampMs":1585397520000},{"description":"[2fad9aa](https://github.com/aracred/TheSource/commit/2fad9aab6897201e6bc353b9746c03d1e728d433): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":902,"timestampMs":1584274368000},{"description":"[3472396](https://github.com/aracred/TheSource/commit/34723961199565937493834071665b871a632d5d): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":903,"timestampMs":1584382440000},{"description":"[35bf082](https://github.com/aracred/TheSource/commit/35bf0829c068aa20de51466ea118f7547707de00): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":904,"timestampMs":1585894360000},{"description":"[364068e](https://github.com/aracred/TheSource/commit/364068ec8db86b378d630f591da3a02de8708798): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":905,"timestampMs":1585095460000},{"description":"[36d7098](https://github.com/aracred/TheSource/commit/36d7098c5f0c400dddec1e654523a2800782b78a): Fix cache path (#8)","index":906,"timestampMs":1581914566000},{"description":"[37b357c](https://github.com/aracred/TheSource/commit/37b357cb88cf608d20589ce6ee51404561bb4b1c): Trigger build","index":907,"timestampMs":1581914856000},{"description":"[380e74d](https://github.com/aracred/TheSource/commit/380e74d47b6bfd2c48d5690093ab03e44b92d991): Run with cache (#4)","index":908,"timestampMs":1581911765000},{"description":"[38f3240](https://github.com/aracred/TheSource/commit/38f3240786ceec5b4c03d7a5ce0faa02512a8cde): cleaned things up","index":909,"timestampMs":1586106153000},{"description":"[391b32b](https://github.com/aracred/TheSource/commit/391b32bfdb5ae37d2ce42d32319fbadde72663f3): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":910,"timestampMs":1583604631000},{"description":"[392e601](https://github.com/aracred/TheSource/commit/392e601d3179506dfe7ec0ad20cd5f679696e66e): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":911,"timestampMs":1583712856000},{"description":"[39b0a90](https://github.com/aracred/TheSource/commit/39b0a902c1c17512a536380503a506fc3ca615bb): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":912,"timestampMs":1585505534000},{"description":"[39c6daa](https://github.com/aracred/TheSource/commit/39c6daaa5fca6305b908cdd28811107eba6bcbe3): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":913,"timestampMs":1584058539000},{"description":"[30014c1](https://github.com/aracred/TheSource/commit/30014c11841c9a605cc94d517ece6b867afd8cef): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":914,"timestampMs":1583172648000},{"description":"[30758d0](https://github.com/aracred/TheSource/commit/30758d04aa4da97fc0aced1fa22cbdee4a82c792): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":915,"timestampMs":1584857389000},{"description":"[309a895](https://github.com/aracred/TheSource/commit/309a89586da5e2d44b48a607c9334aef6f6db3fb): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":916,"timestampMs":1583928647000},{"description":"[311bf26](https://github.com/aracred/TheSource/commit/311bf26aa5268a067b0bfc8708a922d2fd3d0a81): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":917,"timestampMs":1582959644000},{"description":"[317ffa1](https://github.com/aracred/TheSource/commit/317ffa1471a0179007b87f93aac2223666443d45): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":918,"timestampMs":1584965374000},{"description":"[3ab888c](https://github.com/aracred/TheSource/commit/3ab888c62c6fa64080e675c1f5146e156635ee6c): Merge pull request #18 from mzargham/patch-1","index":919,"timestampMs":1583124213000},{"description":"[3b4871c](https://github.com/aracred/TheSource/commit/3b4871c09b67498e31575b8aaa9c09443d142a03): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":920,"timestampMs":1584511968000},{"description":"[3b5a471](https://github.com/aracred/TheSource/commit/3b5a4715a9790e23a2e35d783d691e8d5ee58f80): Update project.json","index":921,"timestampMs":1586105522000},{"description":"[3b8e4f5](https://github.com/aracred/TheSource/commit/3b8e4f54845388851293b26053f4df65b4dc98d1): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":922,"timestampMs":1583280857000},{"description":"[3bc9934](https://github.com/aracred/TheSource/commit/3bc9934834b8a65291439cbba2daf061448e30fe): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":923,"timestampMs":1584101474000},{"description":"[3e5e144](https://github.com/aracred/TheSource/commit/3e5e14457fa143425d264a4fa941591d19730ce3): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":924,"timestampMs":1583086481000},{"description":"[3f47f07](https://github.com/aracred/TheSource/commit/3f47f07723b97f0311f32b78da99358d2c6affb4): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":925,"timestampMs":1583259010000},{"description":"[44cf0fb](https://github.com/aracred/TheSource/commit/44cf0fbba18bf392a44962faed1e1300ed6fa459): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":926,"timestampMs":1585548726000},{"description":"[44c8444](https://github.com/aracred/TheSource/commit/44c844475c5e2beb5acdefc7e4cd54e90d2d84e2): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":927,"timestampMs":1585700008000},{"description":"[4639ec8](https://github.com/aracred/TheSource/commit/4639ec8dba12e8c7d3b0bf589b8c8a09c522ae47): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":928,"timestampMs":1585484037000},{"description":"[48e5b44](https://github.com/aracred/TheSource/commit/48e5b4467c6107040c107d55bc2fbe07a57ea3a0): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":929,"timestampMs":1585311128000},{"description":"[4003769](https://github.com/aracred/TheSource/commit/4003769a8d62ca41d0d18d2bd72204b1d278d5b9): Add mZ (me) to identities","index":930,"timestampMs":1583107086000},{"description":"[407f5d0](https://github.com/aracred/TheSource/commit/407f5d0adffd9ef41bff0bdbfb06f67213accea9): Merge a802f7c669324c951f6554fcf391f886ba3150f8 into 2074791c680ee3d896c6c819ee0244719a7e510c","index":931,"timestampMs":1582959287000},{"description":"[419d39d](https://github.com/aracred/TheSource/commit/419d39d87eb31965a8f5775075cb80be6a57abd6): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":932,"timestampMs":1585440813000},{"description":"[41e6727](https://github.com/aracred/TheSource/commit/41e67273af614a1014bfb58bf6ca1b1cee1e6a8a): Update project.json","index":933,"timestampMs":1586112503000},{"description":"[432042f](https://github.com/aracred/TheSource/commit/432042f6f965bb113ad50950cfdbb82c44f0dc59): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":934,"timestampMs":1583129436000},{"description":"[4a90734](https://github.com/aracred/TheSource/commit/4a90734832ae4ad328fc062712e2deca88d7dcc4): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":935,"timestampMs":1585224759000},{"description":"[4b4c9ea](https://github.com/aracred/TheSource/commit/4b4c9ea9705465d39f33b39ea39819c9c77aa78b): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":936,"timestampMs":1585980739000},{"description":"[4c0f6c1](https://github.com/aracred/TheSource/commit/4c0f6c1fe42e875f8cd6a4be4fa88be63052d149): Merge pull request #15 from AlexMasmej/patch-1","index":937,"timestampMs":1583096048000},{"description":"[4ecd902](https://github.com/aracred/TheSource/commit/4ecd9028dbcbb9fbf51a22a30fc7af21bde61d33): Merge 37b357cb88cf608d20589ce6ee51404561bb4b1c into bbca4d024098c749b7064b70c24c416061255c75","index":938,"timestampMs":1581914897000},{"description":"[554c964](https://github.com/aracred/TheSource/commit/554c96438fdbee2031b8b5ac16aa2d6db6a7f40f): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":939,"timestampMs":1584209897000},{"description":"[56172b6](https://github.com/aracred/TheSource/commit/56172b6087400fa81c13f39f37b23ec11de3c9b2): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":940,"timestampMs":1585937519000},{"description":"[576bc68](https://github.com/aracred/TheSource/commit/576bc68e63d6232f6c78bdd38e66da8585c04b0c): Update generate-cred.yml","index":941,"timestampMs":1586104299000},{"description":"[578544d](https://github.com/aracred/TheSource/commit/578544d0557614c00780089fa9f8343950f977fc): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":942,"timestampMs":1585613634000},{"description":"[509d8c0](https://github.com/aracred/TheSource/commit/509d8c03b1a67129a3e98073dd24f93723cdfe41): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":943,"timestampMs":1585656841000},{"description":"[50d289e](https://github.com/aracred/TheSource/commit/50d289eff07e8033e20cd60a4670c798dea24b71): Update README.md","index":944,"timestampMs":1586109721000},{"description":"[5130862](https://github.com/aracred/TheSource/commit/51308621ec2843350852fd31f8c0aa08d6d6a809): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":945,"timestampMs":1585591899000},{"description":"[5afb4e0](https://github.com/aracred/TheSource/commit/5afb4e08170c1bd2e9f5fb4dd42c6ef5e2d23878): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":946,"timestampMs":1585116577000},{"description":"[5b85a74](https://github.com/aracred/TheSource/commit/5b85a7405489f720ed0b9cb5150c2619d45c9e9d): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":947,"timestampMs":1583820607000},{"description":"[5c621ee](https://github.com/aracred/TheSource/commit/5c621ee4c644713a2627afbfed745482fe5525ef): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":948,"timestampMs":1584619902000},{"description":"[5c8e695](https://github.com/aracred/TheSource/commit/5c8e695ad340e65e85862dc8202d17e73d95bc3e): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":949,"timestampMs":1584943893000},{"description":"[6414f44](https://github.com/aracred/TheSource/commit/6414f44dff41af4a83f6ce0de71d809bd0482d00): fixed syntax error","index":950,"timestampMs":1583122040000},{"description":"[6552409](https://github.com/aracred/TheSource/commit/65524097ed5de3a815e989bd420e38177fe70bca): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":951,"timestampMs":1584187884000},{"description":"[65d2ca3](https://github.com/aracred/TheSource/commit/65d2ca343c51020478094ba87b5db4af6464741a): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":952,"timestampMs":1584123231000},{"description":"[67d4622](https://github.com/aracred/TheSource/commit/67d46229489309035b968391e6d14611ebd5c3ff): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":953,"timestampMs":1585008772000},{"description":"[69d1fb7](https://github.com/aracred/TheSource/commit/69d1fb79b9680f7ec5e8554f2a8c0f81d74d9a9c): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":954,"timestampMs":1584339043000},{"description":"[636ec6a](https://github.com/aracred/TheSource/commit/636ec6a16064c8c33eb4763375d53ac5d8bd1a10): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":955,"timestampMs":1583669536000},{"description":"[6a8bfca](https://github.com/aracred/TheSource/commit/6a8bfca0c936f304cc9a2a3399676be46aea9960): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":956,"timestampMs":1584252719000},{"description":"[6b96998](https://github.com/aracred/TheSource/commit/6b96998e7c2f8ce52dc09ebc9ea524d07debe38e): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":957,"timestampMs":1584360709000},{"description":"[6d51ee8](https://github.com/aracred/TheSource/commit/6d51ee836e10e9d7b38006f5e496655ae18ad368): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":958,"timestampMs":1585915944000},{"description":"[749f1e4](https://github.com/aracred/TheSource/commit/749f1e4c55deee2c1b640348b5965f5a4afd2886): Merge pull request #24 from MetaFam/update-members","index":959,"timestampMs":1585275681000},{"description":"[7860137](https://github.com/aracred/TheSource/commit/78601376522c329c0940754020ff4654ffe937b8): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":960,"timestampMs":1585462336000},{"description":"[7931cf2](https://github.com/aracred/TheSource/commit/7931cf20b5146bca68e51d26cdebade9a1d3a662): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":961,"timestampMs":1583755944000},{"description":"[71e0846](https://github.com/aracred/TheSource/commit/71e08464a654b37b05fe5349649a03f457933fa1): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":962,"timestampMs":1584663156000},{"description":"[7b6d616](https://github.com/aracred/TheSource/commit/7b6d61687e57d15a45d195b1edb567451a30db29): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":963,"timestampMs":1584598257000},{"description":"[7b9dca5](https://github.com/aracred/TheSource/commit/7b9dca52443325803e66cf596d274a0b11d252eb): updated gh actions file","index":964,"timestampMs":1586106389000},{"description":"[7d1f6e2](https://github.com/aracred/TheSource/commit/7d1f6e2d13ab467719f287802b16e799deeb5e26): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":965,"timestampMs":1585332629000},{"description":"[7dc4514](https://github.com/aracred/TheSource/commit/7dc4514cd415cc926827fe02cb2891b8d6b80e5d): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":966,"timestampMs":1583799279000},{"description":"[7dd45c9](https://github.com/aracred/TheSource/commit/7dd45c9416c703d549b6e278b7bfbe75053b1ca0): Initial commit","index":967,"timestampMs":1581898623000},{"description":"[7ff7782](https://github.com/aracred/TheSource/commit/7ff7782489b7894149cc5f211d9ddafcf84918e9): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":968,"timestampMs":1583496697000},{"description":"[842296b](https://github.com/aracred/TheSource/commit/842296b74203dbd599856a16880adcc904bd5b01): add thanks emoji","index":969,"timestampMs":1583106975000},{"description":"[85b6e8c](https://github.com/aracred/TheSource/commit/85b6e8cca2d6bc5709449605c8ac645fe74f78d5): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":970,"timestampMs":1585829522000},{"description":"[8619ee2](https://github.com/aracred/TheSource/commit/8619ee2452e7bf109169017acc968bba3e6e129d): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":971,"timestampMs":1584706303000},{"description":"[877be03](https://github.com/aracred/TheSource/commit/877be03e547648fb7a06110788e7dad226a05559): Add myself to list of identities","index":972,"timestampMs":1583542889000},{"description":"[89a15b5](https://github.com/aracred/TheSource/commit/89a15b5772d1dc21737181d7dda26695a0dfecca): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":973,"timestampMs":1585375849000},{"description":"[89b337b](https://github.com/aracred/TheSource/commit/89b337bef296df10a94c3b38ce1e2ef4396886d5): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":974,"timestampMs":1583431778000},{"description":"[8077363](https://github.com/aracred/TheSource/commit/80773639d8e225d1902d6145312108ecaa906a15): Merge bdb4c8a38c86a4598b2da69391fc84939148d738 into 8e04719f8d88512b8e8e19e17e42f7d960f6733b","index":975,"timestampMs":1581903076000},{"description":"[810abfb](https://github.com/aracred/TheSource/commit/810abfb03976accd663d1b7b964bbc19a92ec609): Merge pull request #17 from MetaFam/bean/patch-triggers","index":976,"timestampMs":1583014162000},{"description":"[817cf89](https://github.com/aracred/TheSource/commit/817cf8940cb88ba790c6021ce54bcb018aa0ceb6): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":977,"timestampMs":1583540024000},{"description":"[81a67f4](https://github.com/aracred/TheSource/commit/81a67f48120449294d3ab94cc767755e0bf3784e): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":978,"timestampMs":1586023930000},{"description":"[8275d1b](https://github.com/aracred/TheSource/commit/8275d1b5f3a774264d5833c23d8958342940092f): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":979,"timestampMs":1585570245000},{"description":"[8d960f0](https://github.com/aracred/TheSource/commit/8d960f0415e8ce8a45d7005c4ee399de672144d4): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":980,"timestampMs":1583410286000},{"description":"[8da32bb](https://github.com/aracred/TheSource/commit/8da32bb2436219e3a55631e426a71d3d45d27c36): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":981,"timestampMs":1585073567000},{"description":"[8e04719](https://github.com/aracred/TheSource/commit/8e04719f8d88512b8e8e19e17e42f7d960f6733b): Adds discord-token secret to action (#1)","index":982,"timestampMs":1581902687000},{"description":"[8e50a18](https://github.com/aracred/TheSource/commit/8e50a18b163cc513402b9c6c320672c83c46db84): added Alex Masmej","index":983,"timestampMs":1582941505000},{"description":"[94e51d9](https://github.com/aracred/TheSource/commit/94e51d9a83cd67b4ad82c6529212e72aac84afe7): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":984,"timestampMs":1583014460000},{"description":"[95d5884](https://github.com/aracred/TheSource/commit/95d5884b12a5a5f1d18552277e37597fb6048297): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":985,"timestampMs":1585289369000},{"description":"[9620fb8](https://github.com/aracred/TheSource/commit/9620fb8b0386160e364e38d63ad3fede4a182ce3): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":986,"timestampMs":1584814190000},{"description":"[978f052](https://github.com/aracred/TheSource/commit/978f052b63aa209ed8107dad71c59a44643e74ba): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":987,"timestampMs":1586002264000},{"description":"[98f76c4](https://github.com/aracred/TheSource/commit/98f76c4fa934a3e08dc4abb8c19697c7ed1da81c): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":988,"timestampMs":1584015081000},{"description":"[936cd22](https://github.com/aracred/TheSource/commit/936cd22fe159bfd7f8bed539783f52c768f20a9f): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":989,"timestampMs":1584901288000},{"description":"[9a5b489](https://github.com/aracred/TheSource/commit/9a5b489e1bbcc306ce4c6362aa5aadff60e6a27f): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":990,"timestampMs":1585851193000},{"description":"[9a86642](https://github.com/aracred/TheSource/commit/9a866424f84b469783dfe559a510ffc93e00d64b): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":991,"timestampMs":1585051794000},{"description":"[9aa0ecd](https://github.com/aracred/TheSource/commit/9aa0ecd6f537c0f3d5f6f200c7c5448ddc28c9dd): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":992,"timestampMs":1583864016000},{"description":"[9d0cacf](https://github.com/aracred/TheSource/commit/9d0cacf29ee5f6668426c0dd9cca12ad7af906aa): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":993,"timestampMs":1583561475000},{"description":"[9d8560f](https://github.com/aracred/TheSource/commit/9d8560f7a170cc2c0937ba7980dbcb466ad3140f): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":994,"timestampMs":1584922566000},{"description":"[9ee6d1b](https://github.com/aracred/TheSource/commit/9ee6d1b3b0d7b06c3abeb7b496e830683c54f6d4): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":995,"timestampMs":1584836115000},{"description":"[a433d84](https://github.com/aracred/TheSource/commit/a433d846e9ff70c98dba741fbfff7fa1985a67fb): Update generate-cred.yml","index":996,"timestampMs":1586103659000},{"description":"[a501a74](https://github.com/aracred/TheSource/commit/a501a7454bf19ee03003196bfec9560d48c978d2): Start running update action","index":997,"timestampMs":1581900781000},{"description":"[a6853a8](https://github.com/aracred/TheSource/commit/a6853a839b1101b077e3b80c3106da01be2807ea): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":998,"timestampMs":1584749757000},{"description":"[a7c425d](https://github.com/aracred/TheSource/commit/a7c425d5f9edb1106b5934cafe4cbfc221a08e9c): Merge pull request #20 from MetaFam/fix/trailing-comma","index":999,"timestampMs":1583124366000},{"description":"[a802f7c](https://github.com/aracred/TheSource/commit/a802f7c669324c951f6554fcf391f886ba3150f8): Update config with new Discourse server","index":1000,"timestampMs":1582959276000},{"description":"[a999d6b](https://github.com/aracred/TheSource/commit/a999d6bd35df198bab6252404325d7a944983410): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1001,"timestampMs":1583691175000},{"description":"[a0fb9b8](https://github.com/aracred/TheSource/commit/a0fb9b822baab9e0fce8433be3de7d423e1b4dd6): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1002,"timestampMs":1583064673000},{"description":"[a2547eb](https://github.com/aracred/TheSource/commit/a2547eb7d1835e050a897172b563ccb69b769711): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":1003,"timestampMs":1584684556000},{"description":"[a2fd7e0](https://github.com/aracred/TheSource/commit/a2fd7e076795c62a07501d5fb71c03999cc4b145): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":1004,"timestampMs":1583842226000},{"description":"[a37a482](https://github.com/aracred/TheSource/commit/a37a48256d99a63fcf0a678ebbb34cca0fd95f23): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1005,"timestampMs":1585743137000},{"description":"[ae656a1](https://github.com/aracred/TheSource/commit/ae656a1a99e9a8cc227c187154123571d9d16872): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1006,"timestampMs":1583107978000},{"description":"[af89e8d](https://github.com/aracred/TheSource/commit/af89e8d6be326c34865a925f1be4c67877064e30): Delete scores.json","index":1007,"timestampMs":1586105574000},{"description":"[b439421](https://github.com/aracred/TheSource/commit/b4394213300ff4d72ebaca7c63cf919df306ead3): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1008,"timestampMs":1583096222000},{"description":"[b5ad5ee](https://github.com/aracred/TheSource/commit/b5ad5eea401b4f415b9da446187b893a7ceee1b5): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":1009,"timestampMs":1585030166000},{"description":"[b5df3c8](https://github.com/aracred/TheSource/commit/b5df3c8cd85cbe43606f2052f00631dbfcca42d9): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1010,"timestampMs":1585764755000},{"description":"[b6388db](https://github.com/aracred/TheSource/commit/b6388db5eb6a6fed56eba661db2b761ccddfd6fc): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1011,"timestampMs":1583993566000},{"description":"[b670574](https://github.com/aracred/TheSource/commit/b670574bd2bcf1e0a71c36b9447b0d5ffe22b9aa): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1012,"timestampMs":1583972111000},{"description":"[b6920f3](https://github.com/aracred/TheSource/commit/b6920f3b6646522b3fc0f93e6343506b485c158b): fix trailing comma in json","index":1013,"timestampMs":1583124346000},{"description":"[b6968e4](https://github.com/aracred/TheSource/commit/b6968e47899cfc22652e1f1dbb3b82ed98cc5232): Create README.md","index":1014,"timestampMs":1586106281000},{"description":"[b8319d3](https://github.com/aracred/TheSource/commit/b8319d3616c7d5e6c2af8087ea63e9fab1a73c02): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1015,"timestampMs":1583619966000},{"description":"[b842ed3](https://github.com/aracred/TheSource/commit/b842ed3eaf687513a0d90eafdfb0a9ec6fc5882e): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1016,"timestampMs":1583302409000},{"description":"[b85c0b5](https://github.com/aracred/TheSource/commit/b85c0b5ab98357c6dc3af69297e6a795851c89f4): Automated deployment to update cred in /github/workspace/docs 2020-02-17","index":1017,"timestampMs":1581903422000},{"description":"[b8c9da4](https://github.com/aracred/TheSource/commit/b8c9da4bcc0d1a50add9423473a6c162cdb99597): Add wiki to projects","index":1018,"timestampMs":1585361688000},{"description":"[b9309e4](https://github.com/aracred/TheSource/commit/b9309e4d44289af8341f43103b7be195df5998b0): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":1019,"timestampMs":1583778483000},{"description":"[b038f1c](https://github.com/aracred/TheSource/commit/b038f1ca9f9b6a5a54935c1a730d2e32f8220ce7): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1020,"timestampMs":1583583119000},{"description":"[b1e2418](https://github.com/aracred/TheSource/commit/b1e24185c567c4f9a60959559e6ff1ac7dbb6279): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1021,"timestampMs":1583043139000},{"description":"[b3a4034](https://github.com/aracred/TheSource/commit/b3a4034f04332a6546a7d03ee781f10dbf9e32f3): Merge pull request #2 from pythonpete32/patch-1","index":1022,"timestampMs":1586104090000},{"description":"[b3f667c](https://github.com/aracred/TheSource/commit/b3f667c746d54fd1e7ef41d4e91186ff705cb01a): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1023,"timestampMs":1583237458000},{"description":"[ba08f21](https://github.com/aracred/TheSource/commit/ba08f21f38fef25e65a006e4af00591f623cba88): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1024,"timestampMs":1583194441000},{"description":"[ba693f5](https://github.com/aracred/TheSource/commit/ba693f5f116cf19d9a8bf1bf55a4ec8c6c1929b8): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1025,"timestampMs":1583215867000},{"description":"[bbca4d0](https://github.com/aracred/TheSource/commit/bbca4d024098c749b7064b70c24c416061255c75): Switch to automatic updates","index":1026,"timestampMs":1581914667000},{"description":"[bbc54e4](https://github.com/aracred/TheSource/commit/bbc54e4947190da8c37d767e004339b62fb34aac): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":1027,"timestampMs":1585527211000},{"description":"[bdb4c8a](https://github.com/aracred/TheSource/commit/bdb4c8a38c86a4598b2da69391fc84939148d738): Automate cred updates","index":1028,"timestampMs":1581903056000},{"description":"[bdd1d95](https://github.com/aracred/TheSource/commit/bdd1d95095fc99186754502c96c1ecbff216fb14): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":1029,"timestampMs":1583734323000},{"description":"[bfd321a](https://github.com/aracred/TheSource/commit/bfd321a5c384dc7fab99062bcc3491705303a176): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1030,"timestampMs":1586105832000},{"description":"[c461bb4](https://github.com/aracred/TheSource/commit/c461bb40366be6124cc8e09af25741c5e65b1a6a): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1031,"timestampMs":1583950431000},{"description":"[c4ae2b9](https://github.com/aracred/TheSource/commit/c4ae2b95edd223a2b3269f4913c5a237e7557194): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1032,"timestampMs":1583345470000},{"description":"[c519a09](https://github.com/aracred/TheSource/commit/c519a0916f23866c99c0c76bad33dec09c4a1052): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1033,"timestampMs":1586045554000},{"description":"[c5eeac9](https://github.com/aracred/TheSource/commit/c5eeac948569a06622740d0b9340c622ddb469d3): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":1034,"timestampMs":1584771018000},{"description":"[c61bc79](https://github.com/aracred/TheSource/commit/c61bc79183374e7e37a8456ff47f662a2bc21baf): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":1035,"timestampMs":1585959190000},{"description":"[c7acef8](https://github.com/aracred/TheSource/commit/c7acef8a5664d3dd57059e8cc447c4f1dbe269db): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":1036,"timestampMs":1584144938000},{"description":"[c85e7ad](https://github.com/aracred/TheSource/commit/c85e7ad86fb08653971ed365f4f316d4577178ed): Update identity for Hammad","index":1037,"timestampMs":1582941407000},{"description":"[c00a25e](https://github.com/aracred/TheSource/commit/c00a25ed5500c60da5520e12c68db9dc1e003cd1): Merge c85e7ad86fb08653971ed365f4f316d4577178ed into 225168780b86a4b41d38845653c5d8759d1d37ad","index":1038,"timestampMs":1582941413000},{"description":"[c37818d](https://github.com/aracred/TheSource/commit/c37818dc54db302c1bb2bfe99312084cb6452263): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1039,"timestampMs":1583125241000},{"description":"[cc4e4ff](https://github.com/aracred/TheSource/commit/cc4e4ff94b2fe78d8727963b42bc1c33bfd2e932): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":1040,"timestampMs":1585786422000},{"description":"[cf359f5](https://github.com/aracred/TheSource/commit/cf359f56a9e7d9e380a729fe64f0fd9e06853c21): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1041,"timestampMs":1583647930000},{"description":"[cf41636](https://github.com/aracred/TheSource/commit/cf41636379acd5fb9e27af62727fdf64a111d959): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":1042,"timestampMs":1583388676000},{"description":"[d455555](https://github.com/aracred/TheSource/commit/d4555554d347b2385ac96a530f5628491c2c724c): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":1043,"timestampMs":1585202969000},{"description":"[d593b12](https://github.com/aracred/TheSource/commit/d593b126af5ccde32fe610fbc399f9233c4fcdcf): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1044,"timestampMs":1583021626000},{"description":"[d7e5763](https://github.com/aracred/TheSource/commit/d7e5763c37582067d930e53718273eef67997db7): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1045,"timestampMs":1583885686000},{"description":"[d8034c1](https://github.com/aracred/TheSource/commit/d8034c1a997a6f3762eb64abefd3983ca5c17b27): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":1046,"timestampMs":1584317721000},{"description":"[d9b40e0](https://github.com/aracred/TheSource/commit/d9b40e071c2f216b8fb4cebce788ec1bf892ac7c): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":1047,"timestampMs":1584792698000},{"description":"[d0cc40b](https://github.com/aracred/TheSource/commit/d0cc40b28ca9129e733107d99730dfbcd9449273): Update generate-cred.yml","index":1048,"timestampMs":1586103656000},{"description":"[d210d6f](https://github.com/aracred/TheSource/commit/d210d6f387860b4736193624125ec5e1b8f5c88a): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":1049,"timestampMs":1584447107000},{"description":"[def7f01](https://github.com/aracred/TheSource/commit/def7f01015008f1aefda848d93661555c086231a): Add preview data","index":1050,"timestampMs":1581898638000},{"description":"[df39053](https://github.com/aracred/TheSource/commit/df39053f37bf93823cd4364b819ca1289e4481b1): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":1051,"timestampMs":1585181592000},{"description":"[df9f742](https://github.com/aracred/TheSource/commit/df9f7423f0e18a57835324b459fe243d3f3e55ab): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1052,"timestampMs":1586088576000},{"description":"[e5c721b](https://github.com/aracred/TheSource/commit/e5c721ba787d25a591d470c5ba11d9bd41e1797f): Merge pull request #19 from mzargham/master","index":1053,"timestampMs":1583124164000},{"description":"[e63ec70](https://github.com/aracred/TheSource/commit/e63ec70c3b75de539e86faf77c9e44f83753cb1f): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":1054,"timestampMs":1585635193000},{"description":"[e00d2fb](https://github.com/aracred/TheSource/commit/e00d2fbc8959a1a8dd6907627c0f13731dd5b7e4): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1055,"timestampMs":1583545284000},{"description":"[e0cd354](https://github.com/aracred/TheSource/commit/e0cd35442d7cf4999adc586ee0c24e3fc3bf2e1f): Fix extra comma","index":1056,"timestampMs":1582941750000},{"description":"[ea5b35e](https://github.com/aracred/TheSource/commit/ea5b35e7658fc8550736aa7ef2e3e4a37c8395a2): Update project.json","index":1057,"timestampMs":1583592448000},{"description":"[ebfca23](https://github.com/aracred/TheSource/commit/ebfca230987726fb6d0c74cdba1e7346b5d08345): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1058,"timestampMs":1583626507000},{"description":"[ec5436b](https://github.com/aracred/TheSource/commit/ec5436b68ec36cea41f923ae2d95841b7dbe678a): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1059,"timestampMs":1585721531000},{"description":"[eca1c8e](https://github.com/aracred/TheSource/commit/eca1c8e4fb9897f86e7192f1741d00509707a42d): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1060,"timestampMs":1583151030000},{"description":"[ee30ad2](https://github.com/aracred/TheSource/commit/ee30ad273845bf58d551566ffe5c4e87e98c07c2): Trigger update","index":1061,"timestampMs":1585365677000},{"description":"[ef1a4e1](https://github.com/aracred/TheSource/commit/ef1a4e1d3bf70f9daccebdf3028ea8f476c26899): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":1062,"timestampMs":1583518372000},{"description":"[f6a88b6](https://github.com/aracred/TheSource/commit/f6a88b69728fa2cbc9304a9d3a6193afa9aca17c): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":1063,"timestampMs":1585419164000},{"description":"[f78660c](https://github.com/aracred/TheSource/commit/f78660ce09132d6127ab960a0fdb9f19f2b76893): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1064,"timestampMs":1584036899000},{"description":"[f79294b](https://github.com/aracred/TheSource/commit/f79294b14e900ca927b3e9e5cf51972814cd2c50): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1065,"timestampMs":1583323781000},{"description":"[f7ecdc6](https://github.com/aracred/TheSource/commit/f7ecdc6617ce77574676654a84f58313ad9f84a8): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1066,"timestampMs":1583907011000},{"description":"[f819ec5](https://github.com/aracred/TheSource/commit/f819ec520e754c4adb46d13d0126fa48f03b0dac): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":1067,"timestampMs":1585361881000},{"description":"[f96bc3f](https://github.com/aracred/TheSource/commit/f96bc3f66106ed4341d674b5a37a1fce8035c922): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":1068,"timestampMs":1583475056000},{"description":"[f1b1a34](https://github.com/aracred/TheSource/commit/f1b1a348514a8d88750c2774a379a00b85ea0810): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":1069,"timestampMs":1584295996000},{"description":"[f3d076f](https://github.com/aracred/TheSource/commit/f3d076f67797f6c3491e046a5dcdce0372890de5): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":1070,"timestampMs":1585138236000},{"description":"[fe33dab](https://github.com/aracred/TheSource/commit/fe33dab74a05f43d1e24044dc4413ff0e72aad50): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":1071,"timestampMs":1584641608000},{"description":"[0470e9f](https://github.com/aracred/AraCred/commit/0470e9f5c13a7c36b0934ca935365649872ad849): Add jest, documentation","index":1072,"timestampMs":1586425053000},{"description":"[06e6bf0](https://github.com/aracred/AraCred/commit/06e6bf089f69a108cae63a413e3a3d0a6c0d40fa): Create run_cli.yml","index":1073,"timestampMs":1586114858000},{"description":"[0764e2b](https://github.com/aracred/AraCred/commit/0764e2b7701a6cd6076622bce90c3d3030e7d08a): Merge branch 'mainnet-test'","index":1074,"timestampMs":1586658939000},{"description":"[08aa4aa](https://github.com/aracred/AraCred/commit/08aa4aa95a936798295f7d02cfa54c1441ae7aa3): add .gitignore","index":1075,"timestampMs":1586425366000},{"description":"[0097f20](https://github.com/aracred/AraCred/commit/0097f202e6f5d2c003e2ce168d124909f19458d7): Update Address book","index":1076,"timestampMs":1586377189000},{"description":"[00ab698](https://github.com/aracred/AraCred/commit/00ab6982140ebd949db7457512b233b7aa3afa1f): Fix settings","index":1077,"timestampMs":1586109857000},{"description":"[02f4d36](https://github.com/aracred/AraCred/commit/02f4d3623ae4e89fa6232477d97fe32b27aae7c5): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1078,"timestampMs":1586283283000},{"description":"[0326166](https://github.com/aracred/AraCred/commit/0326166091410578eaf7c25d9f6736cd4533f9cd): test setupAragon","index":1079,"timestampMs":1586439223000},{"description":"[03604a7](https://github.com/aracred/AraCred/commit/03604a7d8f9a6f488f7990309e70066a1260483d): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1080,"timestampMs":1586434473000},{"description":"[0388fb0](https://github.com/aracred/AraCred/commit/0388fb0219a7460e6726b34835c670986be5406c): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1081,"timestampMs":1586757849000},{"description":"[03e1112](https://github.com/aracred/AraCred/commit/03e1112bf4099083d81386043099e4876599d53d): setup husky","index":1082,"timestampMs":1586430244000},{"description":"[0a23c18](https://github.com/aracred/AraCred/commit/0a23c189b1d776985b6759cfb65b75a5b0dbe388): setup husky","index":1083,"timestampMs":1586430128000},{"description":"[0b35141](https://github.com/aracred/AraCred/commit/0b351412cfa92c8edabea1449da16a7a2128c81f): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1084,"timestampMs":1586822727000},{"description":"[0cc15c5](https://github.com/aracred/AraCred/commit/0cc15c54f0ac08b76b0b20231523123c68e787cc): fix","index":1085,"timestampMs":1586638157000},{"description":"[0e9dbd8](https://github.com/aracred/AraCred/commit/0e9dbd8406b256f6b5e553d6769683a55909ab84): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1086,"timestampMs":1586462221000},{"description":"[16309da](https://github.com/aracred/AraCred/commit/16309da6c786efe9dc1f745c61ad4f2c2ad61d76): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1087,"timestampMs":1586369661000},{"description":"[1798e29](https://github.com/aracred/AraCred/commit/1798e29eb0b6d8dd5e4f14ffcc2f25644e736762): Update README.md","index":1088,"timestampMs":1586535321000},{"description":"[17ec0dc](https://github.com/aracred/AraCred/commit/17ec0dcf84726a4da739f0cbe36cd1908477e4cb): refactor setupAragon","index":1089,"timestampMs":1586436690000},{"description":"[1834ed5](https://github.com/aracred/AraCred/commit/1834ed59b6a58195aef57af492f3122a94aac239): update readme","index":1090,"timestampMs":1586760993000},{"description":"[191e73e](https://github.com/aracred/AraCred/commit/191e73e429ab193e59189f44b363d69613ee0315): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1091,"timestampMs":1586607165000},{"description":"[11a45eb](https://github.com/aracred/AraCred/commit/11a45eb188a756e31f2ece0afcf10afb5e30112f): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1092,"timestampMs":1586887494000},{"description":"[12f5e68](https://github.com/aracred/AraCred/commit/12f5e68f287c17d2e7fbe424b996b269c74c0e8f): Reorg folder structre","index":1093,"timestampMs":1586425839000},{"description":"[1ea710e](https://github.com/aracred/AraCred/commit/1ea710efed95a3abd2613ee16b3aaea6110def50): session 3 photos","index":1094,"timestampMs":1586994934000},{"description":"[1eea54a](https://github.com/aracred/AraCred/commit/1eea54a1361eb6aedba221f65f86205866b97322): Create updateDiscord.yml","index":1095,"timestampMs":1586475320000},{"description":"[275d163](https://github.com/aracred/AraCred/commit/275d163efdd812cdcd6ae2f5a8aff1bab3bed0e7): Merge branch 'master' of https://github.com/aracred/AraCred","index":1096,"timestampMs":1586211419000},{"description":"[29d9a8e](https://github.com/aracred/AraCred/commit/29d9a8ef0d738d8b1bdae873c892af41858cda0a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1097,"timestampMs":1586635242000},{"description":"[20796df](https://github.com/aracred/AraCred/commit/20796df7555b0c191dd575542000d50d98c034cc): log deleted?","index":1098,"timestampMs":1586636313000},{"description":"[21df431](https://github.com/aracred/AraCred/commit/21df4319db26f8c3ed6eed74b2076026cad5c070): Update project.json","index":1099,"timestampMs":1586972808000},{"description":"[221754a](https://github.com/aracred/AraCred/commit/221754a5dbe3ebdf6a0fc5080de82669f5476b83): refactor setupAragon","index":1100,"timestampMs":1586436960000},{"description":"[234d3b0](https://github.com/aracred/AraCred/commit/234d3b02b5491114f1257e23fcaf2bf880eee376): :((","index":1101,"timestampMs":1586645851000},{"description":"[2aaae9c](https://github.com/aracred/AraCred/commit/2aaae9c777eb4801ef65192afd1c7553ceb74012): Update run_cli.yml","index":1102,"timestampMs":1586114997000},{"description":"[2b67c25](https://github.com/aracred/AraCred/commit/2b67c252af08687a1c02e924757e383977d4d4d7): refactor setupAragon","index":1103,"timestampMs":1586436983000},{"description":"[2bd813f](https://github.com/aracred/AraCred/commit/2bd813f09f98fa3b26934f6ff7faaab6ea73f1e6): Install aracred + aragon action","index":1104,"timestampMs":1586439726000},{"description":"[2d290b2](https://github.com/aracred/AraCred/commit/2d290b2288a14d494f0fc18bfac882ef6c617e6a): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1105,"timestampMs":1586844255000},{"description":"[36ed95d](https://github.com/aracred/AraCred/commit/36ed95ddf8349ba3d557bfbbef066b2559b432a3): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1106,"timestampMs":1586718195000},{"description":"[39dae46](https://github.com/aracred/AraCred/commit/39dae46151fcde41ea0b062ae95fde4109142e5b): Update addressbook.json","index":1107,"timestampMs":1587058277000},{"description":"[30ab2ab](https://github.com/aracred/AraCred/commit/30ab2ab8774f20e9541f08c657e6ec9ab08504f0): Update project.json","index":1108,"timestampMs":1587049226000},{"description":"[30ebf64](https://github.com/aracred/AraCred/commit/30ebf64342f800953d06f2b0ed888ac8d4495f69): remove .json linting","index":1109,"timestampMs":1586430447000},{"description":"[314f037](https://github.com/aracred/AraCred/commit/314f037efaaf34002934fac72ee5b8c34e633117): test setupAragon","index":1110,"timestampMs":1586438375000},{"description":"[325b973](https://github.com/aracred/AraCred/commit/325b973a78cbe14ff3f5e9766faee18e85d5a408): Update project.json","index":1111,"timestampMs":1586710226000},{"description":"[32d6fc7](https://github.com/aracred/AraCred/commit/32d6fc725adb844ed330499482232f2876de58d1): Fix settings","index":1112,"timestampMs":1586110667000},{"description":"[336edf6](https://github.com/aracred/AraCred/commit/336edf6f3e0b661f947432cf39bbd9d26299f29d): Update project.json","index":1113,"timestampMs":1586718047000},{"description":"[3a5b333](https://github.com/aracred/AraCred/commit/3a5b33363a28c7bf7bc62329095b08110996d659): test setupAragon","index":1114,"timestampMs":1586439440000},{"description":"[3a649e8](https://github.com/aracred/AraCred/commit/3a649e81c448757920b8c8bdcf8fc392f84d3580): We Have Liftoff","index":1115,"timestampMs":1586658493000},{"description":"[3c52923](https://github.com/aracred/AraCred/commit/3c52923940969e0594c9693d27e80bf81e49bdfb): Automated deployment to update cred in /github/workspace/docs 2020-04-06","index":1116,"timestampMs":1586211419000},{"description":"[3c716ca](https://github.com/aracred/AraCred/commit/3c716ca39a305e5d8a9b2a5aa466039466d05a38): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1117,"timestampMs":1586952325000},{"description":"[3d84fcf](https://github.com/aracred/AraCred/commit/3d84fcf16de8bdd78f1098650394a66a29709a40): Update run_cli.yml","index":1118,"timestampMs":1586641745000},{"description":"[3e37600](https://github.com/aracred/AraCred/commit/3e3760007c9d0a9471f5f0d429ac4c30b1fb54f6): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1119,"timestampMs":1586704923000},{"description":"[4474d1b](https://github.com/aracred/AraCred/commit/4474d1b88abf39aa94df664898e4832fc05e52cc): Update README.md","index":1120,"timestampMs":1586796945000},{"description":"[4477235](https://github.com/aracred/AraCred/commit/44772353f8d950226d909b12778cbed4df3ed866): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1121,"timestampMs":1586348063000},{"description":"[44ea41a](https://github.com/aracred/AraCred/commit/44ea41a64de0f121ff05a4c07c6bb51e35eb5035): add readme","index":1122,"timestampMs":1586446367000},{"description":"[45d3445](https://github.com/aracred/AraCred/commit/45d3445cd814d4666f19f4b1b480984f1c0381eb): Update addressbook.json","index":1123,"timestampMs":1586978574000},{"description":"[45f25ea](https://github.com/aracred/AraCred/commit/45f25ea4eb646427c06e58b7e4ce2c4cd385c329): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1124,"timestampMs":1586535464000},{"description":"[47d595c](https://github.com/aracred/AraCred/commit/47d595cee7fd82afdb8666263baa96555bec7b30): move to new repo","index":1125,"timestampMs":1586107822000},{"description":"[40036a3](https://github.com/aracred/AraCred/commit/40036a386b07c41b89e594736dadb6134cf182de): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1126,"timestampMs":1586498582000},{"description":"[4a623fb](https://github.com/aracred/AraCred/commit/4a623fbc3735c9a32d10199880214cc79caa4004): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1127,"timestampMs":1586712241000},{"description":"[4acea81](https://github.com/aracred/AraCred/commit/4acea81dd65135e7afd23cd4c5484dae44bcb324): Fix settings","index":1128,"timestampMs":1586111848000},{"description":"[4dc6dc2](https://github.com/aracred/AraCred/commit/4dc6dc24deb0f914eabc017a1e488a4d62f1a893): Merge pull request #11 from aracred/sc-patch","index":1129,"timestampMs":1586450203000},{"description":"[4ec6bdc](https://github.com/aracred/AraCred/commit/4ec6bdc6a120e123052ebf690ddf6f32b9c35722): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1130,"timestampMs":1586649806000},{"description":"[5409041](https://github.com/aracred/AraCred/commit/54090419b371cac747ca19327d54c4cddb375f05): Update devops.yml","index":1131,"timestampMs":1586208161000},{"description":"[554a82b](https://github.com/aracred/AraCred/commit/554a82bc05cb713e92e8b3523b521078daf829f0): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1132,"timestampMs":1586779463000},{"description":"[56e1450](https://github.com/aracred/AraCred/commit/56e1450abd29457d3aefbdaef3e38562727b7628): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1133,"timestampMs":1586477016000},{"description":"[5023eee](https://github.com/aracred/AraCred/commit/5023eee71c9c3f2f16de1b22e9f37fda26c2f023): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1134,"timestampMs":1586995532000},{"description":"[52c6264](https://github.com/aracred/AraCred/commit/52c6264dbafc69c14a2381a41075ca4fbb020653): remove recursive call to grain","index":1135,"timestampMs":1586608102000},{"description":"[53b6f1b](https://github.com/aracred/AraCred/commit/53b6f1b980b797f92d59fc4912b2fe6e999f774a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1136,"timestampMs":1586628192000},{"description":"[53d9b62](https://github.com/aracred/AraCred/commit/53d9b62862d0e8ef597dbffcbd0da8bcd12100cc): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1137,"timestampMs":1586736284000},{"description":"[5ae6db7](https://github.com/aracred/AraCred/commit/5ae6db74ec638222cb60957c3105e15de7f84457): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1138,"timestampMs":1586712506000},{"description":"[5d168f1](https://github.com/aracred/AraCred/commit/5d168f1298b62e831159fc316e394491b8386aa8): test setupAragon","index":1139,"timestampMs":1586438648000},{"description":"[5dd05e3](https://github.com/aracred/AraCred/commit/5dd05e3605e9940f65f2059e8c4286077a6439db): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1140,"timestampMs":1586556340000},{"description":"[5f68901](https://github.com/aracred/AraCred/commit/5f689010f6e0a438513b7e44ef37ae12d59ddf91): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1141,"timestampMs":1586412877000},{"description":"[5fc99f0](https://github.com/aracred/AraCred/commit/5fc99f0926a38140bc41ab5322e28e43f5b50969): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1142,"timestampMs":1586520161000},{"description":"[66f2702](https://github.com/aracred/AraCred/commit/66f27020fa0bd12851a0de1b206abec8c0b5e55d): merge","index":1143,"timestampMs":1586447296000},{"description":"[67b5858](https://github.com/aracred/AraCred/commit/67b58587f295e53b396fed2b68ab34032fd86420): Split yml files","index":1144,"timestampMs":1586262990000},{"description":"[68038d1](https://github.com/aracred/AraCred/commit/68038d157338b257f25c21b69def40c3eed1e43e): added SourceCred actions","index":1145,"timestampMs":1586108344000},{"description":"[603c5f7](https://github.com/aracred/AraCred/commit/603c5f7b7e2afb54619ebe705b969a1acb102bf6): Update project.json","index":1146,"timestampMs":1586822144000},{"description":"[6044da7](https://github.com/aracred/AraCred/commit/6044da77d77cd5f0bf782fd47faf7813cb9a00d7): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1147,"timestampMs":1586426011000},{"description":"[604ba87](https://github.com/aracred/AraCred/commit/604ba8761cdddc84bfa66485fe367495e5c8a65a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1148,"timestampMs":1586619438000},{"description":"[60df4a2](https://github.com/aracred/AraCred/commit/60df4a2278ec3dd51317900064eb3061be31c3b7): Update project.json","index":1149,"timestampMs":1586712379000},{"description":"[62d4724](https://github.com/aracred/AraCred/commit/62d47242332f4e1d86f7d7ae460f6dc998344aa2): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1150,"timestampMs":1586631415000},{"description":"[6bc1161](https://github.com/aracred/AraCred/commit/6bc1161d99c436a23c35f5477862677701ef72e7): Merge branch 'master' of https://github.com/aracred/AraCred","index":1151,"timestampMs":1586629712000},{"description":"[6f1a396](https://github.com/aracred/AraCred/commit/6f1a3968daa1e3d2bd607f81a599ac5ebf73f717): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1152,"timestampMs":1586263834000},{"description":"[6f4ff7a](https://github.com/aracred/AraCred/commit/6f4ff7a024df84c214317b9c950d77f3ae3c4f57): Merge pull request #20 from aracred/add-evalir-aracred","index":1153,"timestampMs":1586810697000},{"description":"[6fb58d2](https://github.com/aracred/AraCred/commit/6fb58d2bcb10efa1a1836b0bf3357ae6bc33955b): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1154,"timestampMs":1586541781000},{"description":"[753c27e](https://github.com/aracred/AraCred/commit/753c27ee7d264f00c566fe6f56722528f1028704): switch to rinkeby","index":1155,"timestampMs":1586630579000},{"description":"[7544c9c](https://github.com/aracred/AraCred/commit/7544c9c062ca14c025caa6d2d859e346287f5e06): logging","index":1156,"timestampMs":1586640176000},{"description":"[758f9eb](https://github.com/aracred/AraCred/commit/758f9ebb14e2687de4f888bc94f872a610174a9f): Add Evalir to Aracred","index":1157,"timestampMs":1586802604000},{"description":"[75ebd02](https://github.com/aracred/AraCred/commit/75ebd0228f654f094c750b9885c5fe5aceb72486): Update project.json","index":1158,"timestampMs":1586972788000},{"description":"[777514f](https://github.com/aracred/AraCred/commit/777514f100a7dc7df22a9a3f2c57f6516e8efc44): fix run_sc .yml fies","index":1159,"timestampMs":1586264143000},{"description":"[78714ca](https://github.com/aracred/AraCred/commit/78714ca856356791aae2576d01eb1c27fc7e4c3f): fix CLI action, disable SC run on push","index":1160,"timestampMs":1586443674000},{"description":"[713acbd](https://github.com/aracred/AraCred/commit/713acbd4593a7a10b0544aaab7fc4ac05a66f9ae): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1161,"timestampMs":1586671402000},{"description":"[73505c3](https://github.com/aracred/AraCred/commit/73505c34a1b46a3dfcaca4d9c3aa116fdf51e0db): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1162,"timestampMs":1586265411000},{"description":"[73dbfea](https://github.com/aracred/AraCred/commit/73dbfea00d269ff953ee50c034f1c6939743a5de): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1163,"timestampMs":1586909106000},{"description":"[7a99196](https://github.com/aracred/AraCred/commit/7a991963a5c8fc8dba4ab6a0c1e39421eeec45d6): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1164,"timestampMs":1586456075000},{"description":"[7ad5a2a](https://github.com/aracred/AraCred/commit/7ad5a2af6206fa2c6d894364d1f7f40b55f08149): switch to rinkeby","index":1165,"timestampMs":1586629689000},{"description":"[7b20ff3](https://github.com/aracred/AraCred/commit/7b20ff37a9650a134c6f55fffd04fbdd5df83b43): Update run_cli.yml","index":1166,"timestampMs":1586642724000},{"description":"[7bdeb69](https://github.com/aracred/AraCred/commit/7bdeb692b04c1a855be5d7dda172d87caafa3f1b): Merge pull request #27 from mzargham/worksession-3-photos","index":1167,"timestampMs":1587042850000},{"description":"[7d4bf5a](https://github.com/aracred/AraCred/commit/7d4bf5aecee8daf8516f468e96e15c6b4d0efbcf): Update run_sc.yml","index":1168,"timestampMs":1586461703000},{"description":"[7e0a5d6](https://github.com/aracred/AraCred/commit/7e0a5d65716af527389ac6bb38d14950d482e415): update .yml fies","index":1169,"timestampMs":1586264058000},{"description":"[7ea5916](https://github.com/aracred/AraCred/commit/7ea5916ad6f9de9841f277901506ab72a39bf157): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1170,"timestampMs":1586973850000},{"description":"[7fadabe](https://github.com/aracred/AraCred/commit/7fadabe4bad18a2e7326b241c874d5efbeb6a691): Update project.json","index":1171,"timestampMs":1586208446000},{"description":"[8849eeb](https://github.com/aracred/AraCred/commit/8849eeb9b3a0677fcc53c34ec1675a0e27cf0074): Merge pull request #1 from aracred/split-config","index":1172,"timestampMs":1586264565000},{"description":"[89ed10e](https://github.com/aracred/AraCred/commit/89ed10ec9153e166a0b7275c73003fc6fd86e76e): fix run_sc.yml fies","index":1173,"timestampMs":1586264365000},{"description":"[8a584e4](https://github.com/aracred/AraCred/commit/8a584e4b4f9c8a1111bf383d3a7a72ca3f8ee5b9): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1174,"timestampMs":1586634125000},{"description":"[8b44ea0](https://github.com/aracred/AraCred/commit/8b44ea06f42e6a25fc0e87bfd38c28786001969a): MAINNET","index":1175,"timestampMs":1586633972000},{"description":"[8c62624](https://github.com/aracred/AraCred/commit/8c62624a48c8a907f8b30e548abdc4e3764fb0df): switch to rinkeby","index":1176,"timestampMs":1586630527000},{"description":"[8c79753](https://github.com/aracred/AraCred/commit/8c797532d4140aa6ce0d5514cc6ca749ec6223e3): fix processGrain","index":1177,"timestampMs":1586632841000},{"description":"[8ce123a](https://github.com/aracred/AraCred/commit/8ce123a903f0035d55349e86f54eb04838bb739f): Merge branch 'tidyRepo'","index":1178,"timestampMs":1586446829000},{"description":"[8dfd165](https://github.com/aracred/AraCred/commit/8dfd165458a81f0c67969620d6ab006b7e24aef0): add github workflows","index":1179,"timestampMs":1586437704000},{"description":"[8e13f39](https://github.com/aracred/AraCred/commit/8e13f39d1372b422a914857f324ee60abd2c795a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1180,"timestampMs":1586630734000},{"description":"[8e56a3f](https://github.com/aracred/AraCred/commit/8e56a3f94f680b5419df0fbfba1e9c985a495345): :)","index":1181,"timestampMs":1586643749000},{"description":"[8e62a06](https://github.com/aracred/AraCred/commit/8e62a063ca7e54dc299eb6cabbf877a663b94c8f): Update project.json","index":1182,"timestampMs":1587058263000},{"description":"[8e80b8f](https://github.com/aracred/AraCred/commit/8e80b8ff5bbc8123e57ac728fc9efcd1cd2d038b): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1183,"timestampMs":1586613015000},{"description":"[8fe6cb1](https://github.com/aracred/AraCred/commit/8fe6cb1f84b56fff85a3bd87661712256a6806ab): Update dao.json","index":1184,"timestampMs":1586556200000},{"description":"[96d3703](https://github.com/aracred/AraCred/commit/96d370369c4d00c35acbdbc499fed536101b6601): package.lock","index":1185,"timestampMs":1586426157000},{"description":"[971440a](https://github.com/aracred/AraCred/commit/971440a0ff594fb02bef0ed3320e9371e17bc2c3): Delete updateDiscord.yml","index":1186,"timestampMs":1586504576000},{"description":"[982a89d](https://github.com/aracred/AraCred/commit/982a89df2b5282578a7593eea49511ae803ee10b): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1187,"timestampMs":1586637613000},{"description":"[90694dc](https://github.com/aracred/AraCred/commit/90694dc47c350631227c33418a773a70137d5877): Update addressbook.json","index":1188,"timestampMs":1587050798000},{"description":"[912ad7c](https://github.com/aracred/AraCred/commit/912ad7ced1c783afb97c7d9a66f7c3f5e2799312): Update project.json","index":1189,"timestampMs":1587051668000},{"description":"[9227670](https://github.com/aracred/AraCred/commit/9227670ae651f3da852b6ec3555aa15713ecce86): Merge branch 'master' of https://github.com/aracred/AraCred","index":1190,"timestampMs":1586632115000},{"description":"[937417e](https://github.com/aracred/AraCred/commit/937417e50fd087e175a28471de2176cb56ec7003): Update run_cli.yml","index":1191,"timestampMs":1586115022000},{"description":"[9fdf441](https://github.com/aracred/AraCred/commit/9fdf4415ba620e87f0c8182df47265aa34f5f8fd): test patch","index":1192,"timestampMs":1586395769000},{"description":"[a462920](https://github.com/aracred/AraCred/commit/a462920043f7ded252ca746cf21c6a3dfe91325b): Update addressbook.json","index":1193,"timestampMs":1586978547000},{"description":"[a52d247](https://github.com/aracred/AraCred/commit/a52d2478c6e23704685c324883891a25f261069f): Update project.json","index":1194,"timestampMs":1587051026000},{"description":"[a6e243f](https://github.com/aracred/AraCred/commit/a6e243fcbfe540b52551bbb50c542ad07ee92e39): setup prettier","index":1195,"timestampMs":1586428289000},{"description":"[a7ea71e](https://github.com/aracred/AraCred/commit/a7ea71e19d10841f56da13b7bd52ec3b0b2a9469): Fix?","index":1196,"timestampMs":1586635956000},{"description":"[a8419d9](https://github.com/aracred/AraCred/commit/a8419d96792a217c1bb9462dfa71c8c738a87a16): Update project.json","index":1197,"timestampMs":1586717770000},{"description":"[a04b179](https://github.com/aracred/AraCred/commit/a04b1795da49cbc6e5f795f3b6c6cc424e1b9d19): Update addressbook.json","index":1198,"timestampMs":1586975177000},{"description":"[a04cff6](https://github.com/aracred/AraCred/commit/a04cff65d72e1b96813ce58a0122a50378ac496d): Revert \"Update README.md\"","index":1199,"timestampMs":1586566089000},{"description":"[a04fe98](https://github.com/aracred/AraCred/commit/a04fe98b80805bd1b2eafab803bc54c45c360418): add ./log","index":1200,"timestampMs":1586637453000},{"description":"[a0931cb](https://github.com/aracred/AraCred/commit/a0931cbed5f9f91298af9d27a02d69468722488b): Update project.json","index":1201,"timestampMs":1586209230000},{"description":"[a356fe3](https://github.com/aracred/AraCred/commit/a356fe37b3ee2256d529a625a42d890962870096): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1202,"timestampMs":1586606578000},{"description":"[a3a0462](https://github.com/aracred/AraCred/commit/a3a0462dc68b9d35f30abd2ce16199a9450383f4): switch to mainnet","index":1203,"timestampMs":1586619306000},{"description":"[ab8fbf7](https://github.com/aracred/AraCred/commit/ab8fbf7d53b4152b4ec97c983405cc703df3a2bd): Merge branch 'master' of https://github.com/aracred/AraCred","index":1204,"timestampMs":1586635980000},{"description":"[ace3d82](https://github.com/aracred/AraCred/commit/ace3d821833c0157e8e3f74c06951fe79cbb49e7): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1205,"timestampMs":1586475455000},{"description":"[af3fc40](https://github.com/aracred/AraCred/commit/af3fc40b0b4f010f4236391bc245bab5c3fc5343): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1206,"timestampMs":1586801019000},{"description":"[b4e879f](https://github.com/aracred/AraCred/commit/b4e879fb7c6c79a659dacc784a3e2165411d7531): test transactionSettings.json","index":1207,"timestampMs":1586440952000},{"description":"[b55a7a1](https://github.com/aracred/AraCred/commit/b55a7a196b8f85817e8548bf7b9afba1341131e2): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1208,"timestampMs":1586566249000},{"description":"[b5e53ec](https://github.com/aracred/AraCred/commit/b5e53ece75d30f3d379adb3a07c8cf652434e773): Update project.json","index":1209,"timestampMs":1586704728000},{"description":"[b859060](https://github.com/aracred/AraCred/commit/b85906087b6422297975a655808e1ddf998fdc8c): add .gitignore","index":1210,"timestampMs":1586425156000},{"description":"[b28ca12](https://github.com/aracred/AraCred/commit/b28ca121bfda152ce8bacc325aa7a31f9a3edb1e): Backfill worksession photos","index":1211,"timestampMs":1586810374000},{"description":"[b2ec064](https://github.com/aracred/AraCred/commit/b2ec0646a7533828b003a7cc525ac0ec48c5d9a0): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1212,"timestampMs":1586692988000},{"description":"[b344928](https://github.com/aracred/AraCred/commit/b34492813251b626e0ef02911d7a0fe28aaa2b0f): Merge pull request #21 from mzargham/worksession-photos","index":1213,"timestampMs":1586810650000},{"description":"[b3bfd81](https://github.com/aracred/AraCred/commit/b3bfd8136d25f8aacc2b9267a3700f36f366792e): MAINNET","index":1214,"timestampMs":1586633830000},{"description":"[b3f72b5](https://github.com/aracred/AraCred/commit/b3f72b5f3ed774a1891f2da1a3c1b60af9272d84): Update setupAragon.js","index":1215,"timestampMs":1586631279000},{"description":"[bab488e](https://github.com/aracred/AraCred/commit/bab488e0531a826777829e70c4cf8f620202e881): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1216,"timestampMs":1586304876000},{"description":"[bb4c806](https://github.com/aracred/AraCred/commit/bb4c80608db52c03a33b09edbf8fdbffc666c664): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1217,"timestampMs":1586659664000},{"description":"[bcc0d1e](https://github.com/aracred/AraCred/commit/bcc0d1e18f56c0ee098c7a1316afa5252c5d3392): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1218,"timestampMs":1586326476000},{"description":"[be50399](https://github.com/aracred/AraCred/commit/be503991de7a3225cfc2888ab833abfccdb1d309): test setupAragon","index":1219,"timestampMs":1586439053000},{"description":"[be5b93a](https://github.com/aracred/AraCred/commit/be5b93ae59bf65b698f6ed6301d28218c8170e91): :((","index":1220,"timestampMs":1586645068000},{"description":"[bfb1be1](https://github.com/aracred/AraCred/commit/bfb1be19201eedf6f5556b76fb3cba77b694c535): Update addressbook.json","index":1221,"timestampMs":1587051708000},{"description":"[c46d5eb](https://github.com/aracred/AraCred/commit/c46d5eb8179fd34a5732394f59d40cf6e3b5a4e3): Update project.json","index":1222,"timestampMs":1586461592000},{"description":"[c5c9f44](https://github.com/aracred/AraCred/commit/c5c9f44334709db3c28eb81f1ee928a3823ae003): configure eslint","index":1223,"timestampMs":1586426867000},{"description":"[c676d5b](https://github.com/aracred/AraCred/commit/c676d5b790126e2af137ca1c53c8048db443a88a): merge with mainnet branch","index":1224,"timestampMs":1586659020000},{"description":"[c852446](https://github.com/aracred/AraCred/commit/c85244688604991c9ee1ae17a7bf62373a004fd1): Update project.json","index":1225,"timestampMs":1586462092000},{"description":"[c8d413c](https://github.com/aracred/AraCred/commit/c8d413c01f9aa1c9d272f96283367268ff49103f): update DAO settings","index":1226,"timestampMs":1586445094000},{"description":"[c04c305](https://github.com/aracred/AraCred/commit/c04c305dff31a60a5ea91270b07b5b46c4b734c3): mints every 24 hours","index":1227,"timestampMs":1586659508000},{"description":"[c0622fc](https://github.com/aracred/AraCred/commit/c0622fcf93369e37f99e4809cea077710b9677d9): Update project.json","index":1228,"timestampMs":1586710445000},{"description":"[c09ce59](https://github.com/aracred/AraCred/commit/c09ce59f6cb00f62380a8dca641fbd016f0d70a5): Update project.json","index":1229,"timestampMs":1586461896000},{"description":"[c0f3224](https://github.com/aracred/AraCred/commit/c0f32243cff400f34b36897db4e64d3ae2cec253): rinkeby branch","index":1230,"timestampMs":1586640763000},{"description":"[c191e57](https://github.com/aracred/AraCred/commit/c191e57f44662bcb753ec4c08a25545b0d25e284): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1231,"timestampMs":1586865848000},{"description":"[c264cfe](https://github.com/aracred/AraCred/commit/c264cfe1bc96c758079bffcd728f497d0d7c0117): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1232,"timestampMs":1587038694000},{"description":"[c34bc9c](https://github.com/aracred/AraCred/commit/c34bc9c573eacc008ca98653ddd2661f823ff9b2): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1233,"timestampMs":1587060270000},{"description":"[ca41c37](https://github.com/aracred/AraCred/commit/ca41c379a44e4ccadb2b56c359ff2ece8aa5b5de): add mint.js","index":1234,"timestampMs":1586442756000},{"description":"[cba7b74](https://github.com/aracred/AraCred/commit/cba7b7417f1aa04b9137d0eb1d2b41cfc1b84f9b): fingers crossed","index":1235,"timestampMs":1586656761000},{"description":"[ccde11b](https://github.com/aracred/AraCred/commit/ccde11b4e85afd9685dc9f58165148861adbe59e): logging","index":1236,"timestampMs":1586639218000},{"description":"[cee0c69](https://github.com/aracred/AraCred/commit/cee0c69332f9f5481d0ae7f1dcf1a8f92f346877): add setupAragon()","index":1237,"timestampMs":1586431949000},{"description":"[d44bc4f](https://github.com/aracred/AraCred/commit/d44bc4f2e2256f0ebe1af485b047d9567583ed85): Update project.json","index":1238,"timestampMs":1586711922000},{"description":"[d56ad45](https://github.com/aracred/AraCred/commit/d56ad45d57b3ca44c6702f66dbcf349dd39a9116): Update project.json","index":1239,"timestampMs":1586712103000},{"description":"[d63265d](https://github.com/aracred/AraCred/commit/d63265d1ec1ac6d5e5d661fc137bef3bc4752020): Update project.json","index":1240,"timestampMs":1586820040000},{"description":"[d6bcaf0](https://github.com/aracred/AraCred/commit/d6bcaf0ed530067e11be1321280fc83f3a289be2): Merge pull request #7 from aracred/processScores-patch","index":1241,"timestampMs":1586425693000},{"description":"[d8288bb](https://github.com/aracred/AraCred/commit/d8288bb356551f8609c84a09886c19fb4fd673b4): Create .deleteme","index":1242,"timestampMs":1586646488000},{"description":"[d83736f](https://github.com/aracred/AraCred/commit/d83736f0f5cc5c3fc415146a5ad80145b3a565a7): Update dao.json","index":1243,"timestampMs":1586657456000},{"description":"[d01e1a1](https://github.com/aracred/AraCred/commit/d01e1a1762cde70b0fb49e82ec5432de6d691fb3): Fix settings","index":1244,"timestampMs":1586109264000},{"description":"[d130287](https://github.com/aracred/AraCred/commit/d13028772ab946a65da8787a255248337864a5ba): test patch","index":1245,"timestampMs":1586395938000},{"description":"[d219bd2](https://github.com/aracred/AraCred/commit/d219bd2f62a0ec8ac06b82daf83499442e3cb173): edit workflow name","index":1246,"timestampMs":1586443142000},{"description":"[d383b8f](https://github.com/aracred/AraCred/commit/d383b8fd2e6815eb8a5099785a7ef5c4393e531e): Update project.json","index":1247,"timestampMs":1586704788000},{"description":"[da69104](https://github.com/aracred/AraCred/commit/da69104f37bc78c1c71a34b9fafe537f875ca7dc): remove cache","index":1248,"timestampMs":1586612834000},{"description":"[da9fa8e](https://github.com/aracred/AraCred/commit/da9fa8ec523e360ace96eba7bc72bedadc69c8ac): add mint to workflow","index":1249,"timestampMs":1586443040000},{"description":"[dbb4bbb](https://github.com/aracred/AraCred/commit/dbb4bbb4a48bf36b3890cb23012337c0bfbfc6c7): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1250,"timestampMs":1586584977000},{"description":"[dc00826](https://github.com/aracred/AraCred/commit/dc008266ba36121c746ddb6b60121b6e084d3065): Finalise setupAragon","index":1251,"timestampMs":1586439553000},{"description":"[defb8c5](https://github.com/aracred/AraCred/commit/defb8c56dbc8ed6a58674a7c569010ddc17fea0b): add sc config files","index":1252,"timestampMs":1586449851000},{"description":"[e4db1e5](https://github.com/aracred/AraCred/commit/e4db1e5c01390590a53e47424b6fc6389fbed459): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1253,"timestampMs":1586646613000},{"description":"[e5810c7](https://github.com/aracred/AraCred/commit/e5810c7e956182f58bacafd24c51f8be7e6af31f): add process grain, add DAO config file","index":1254,"timestampMs":1586440769000},{"description":"[e7d262b](https://github.com/aracred/AraCred/commit/e7d262bceecfcab743754d6d3a41fea1d74be955): Merge branch 'master' of https://github.com/aracred/AraCred","index":1255,"timestampMs":1586638167000},{"description":"[e86fcfd](https://github.com/aracred/AraCred/commit/e86fcfd2e1ddf643bc06ef0a08d439899b509c8a): fix mint.js","index":1256,"timestampMs":1586442958000},{"description":"[e8c0367](https://github.com/aracred/AraCred/commit/e8c036745f6c3d82f34e46e6f40ce520f53be1ef): make SC run","index":1257,"timestampMs":1586443278000},{"description":"[e8d2566](https://github.com/aracred/AraCred/commit/e8d2566e023a7cefb04c5157b0f85568fcb9a3c5): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1258,"timestampMs":1587017056000},{"description":"[e11bcaa](https://github.com/aracred/AraCred/commit/e11bcaa214504bd338f41f0684c387377e91d223): added weights.json","index":1259,"timestampMs":1586108556000},{"description":"[e27f889](https://github.com/aracred/AraCred/commit/e27f889ed7e899c482d528e5bafb0a950047db35): fix setup aragon","index":1260,"timestampMs":1586632045000},{"description":"[ecc49af](https://github.com/aracred/AraCred/commit/ecc49af4d29ddb86bece5cf38e3295d03d80efc8): :(","index":1261,"timestampMs":1586644275000},{"description":"[ed75cb5](https://github.com/aracred/AraCred/commit/ed75cb58e840a9712a7fe5678e0234538101824c): Add package-lock.json","index":1262,"timestampMs":1586439910000},{"description":"[ed85892](https://github.com/aracred/AraCred/commit/ed85892fe323a252ac0d44ca5ce619fe73cc8a5d): hardcode","index":1263,"timestampMs":1586635090000},{"description":"[ee805c2](https://github.com/aracred/AraCred/commit/ee805c230d58b420f39bedd6d7dc5c10c8f14856): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1264,"timestampMs":1586563402000},{"description":"[ee958e4](https://github.com/aracred/AraCred/commit/ee958e4ea4a9d7db08a45e558912449245e1f619): update readme","index":1265,"timestampMs":1586761063000},{"description":"[efe2a21](https://github.com/aracred/AraCred/commit/efe2a210242adcd52a288d57f373b09187b88c17): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1266,"timestampMs":1586714645000},{"description":"[f4379c3](https://github.com/aracred/AraCred/commit/f4379c34b30691a61e67438d4da4192f7cb18710): Update addressbook.json","index":1267,"timestampMs":1587049279000},{"description":"[f4597ea](https://github.com/aracred/AraCred/commit/f4597eaa6b0681ebfb7e32991fc295f52427d199): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1268,"timestampMs":1586630029000},{"description":"[f4b57f6](https://github.com/aracred/AraCred/commit/f4b57f657a24f0feb175f404718f49ffc506edc0): Rmove package.lock","index":1269,"timestampMs":1586425884000},{"description":"[f5b6b5b](https://github.com/aracred/AraCred/commit/f5b6b5b9b8ab493342591799369bab4473ad4bd5): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1270,"timestampMs":1586930710000},{"description":"[f748975](https://github.com/aracred/AraCred/commit/f74897580057b86bf1ec803694b2494dc5099ba4): Update project.json","index":1271,"timestampMs":1586208275000},{"description":"[f024b3a](https://github.com/aracred/AraCred/commit/f024b3aa2227eccef235a3b4d5a76e7f04cc78fc): Update run_cli.yml","index":1272,"timestampMs":1586641071000},{"description":"[f13bf3f](https://github.com/aracred/AraCred/commit/f13bf3f7a6dfeebd2725261a11357612547e0783): add badges to readme","index":1273,"timestampMs":1586446525000},{"description":"[f165058](https://github.com/aracred/AraCred/commit/f1650581495bd5ba951e6aca3adc65aa4271e7ec): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1274,"timestampMs":1586391268000},{"description":"[f3484bc](https://github.com/aracred/AraCred/commit/f3484bc0a5f204b3b6cd3159a0e3c274c2056154): new DAO /#/chicklet","index":1275,"timestampMs":1586607022000},{"description":"[f370b16](https://github.com/aracred/AraCred/commit/f370b16891f4dc805ea30ac6b5a3042c8224bb45): remove docs","index":1276,"timestampMs":1586457498000},{"description":"[fb4fcae](https://github.com/aracred/AraCred/commit/fb4fcae94286c8bcdda97e172bc867ab4e08b76c): fingers crossed","index":1277,"timestampMs":1586656082000},{"description":"[fce3339](https://github.com/aracred/AraCred/commit/fce33399d0696995385d8895995cb0fdaad56615): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1278,"timestampMs":1586504710000},{"description":"[fdaff82](https://github.com/aracred/AraCred/commit/fdaff82509a99dc7adb3d1289b2ad02a339fe19e): logging","index":1279,"timestampMs":1586639647000},{"description":"[fe865a6](https://github.com/aracred/AraCred/commit/fe865a679a723590923af6394366b58fb01c8f50): test patch","index":1280,"timestampMs":1586396173000},{"description":"[ff708c3](https://github.com/aracred/AraCred/commit/ff708c3b7352a9b659df8120351e6f1eab566a2a): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1281,"timestampMs":1586450503000},{"description":"[ffec223](https://github.com/aracred/AraCred/commit/ffec223be5fffa16d0ce2effb0aeed1b959a2532): Update README.md","index":1282,"timestampMs":1586109667000},{"description":"[07d5c9e](https://github.com/aracred/aracred-cli/commit/07d5c9eafed794bfbde34705c0232dfdbb47bd9c): Merge pull request #6 from pythonpete32/source-validation","index":1283,"timestampMs":1585184379000},{"description":"[030e8ec](https://github.com/aracred/aracred-cli/commit/030e8ecc0d83eb09cc3ac614a607eb119aab7fa3): aracli => aracred","index":1284,"timestampMs":1583868918000},{"description":"[0c32d96](https://github.com/aracred/aracred-cli/commit/0c32d96da86885a0d730f8398a23403372117d4b): start processCSV","index":1285,"timestampMs":1583846036000},{"description":"[0e6c465](https://github.com/aracred/aracred-cli/commit/0e6c46576a8feeb07054584458ebdec61fd886f3): Update README.md","index":1286,"timestampMs":1586115483000},{"description":"[17a658c](https://github.com/aracred/aracred-cli/commit/17a658ce22542db61a1bae02316d8c0e082fa52f): add github validation","index":1287,"timestampMs":1585184096000},{"description":"[1041be1](https://github.com/aracred/aracred-cli/commit/1041be12a4aee28587ede5b1a532c6595de78c70): Update README.md","index":1288,"timestampMs":1586115750000},{"description":"[135b198](https://github.com/aracred/aracred-cli/commit/135b198b82d822d1d1a15b3683da0b76487c3e6d): Small fixes","index":1289,"timestampMs":1584727008000},{"description":"[1a32526](https://github.com/aracred/aracred-cli/commit/1a3252694d719fb389bb10c0e24d727e61a3f8a3): tidy","index":1290,"timestampMs":1586119837000},{"description":"[1e08344](https://github.com/aracred/aracred-cli/commit/1e08344d06d9089d381e91e2bee0c1adf3fe3b9d): Merge branch 'master' of https://github.com/aracred/aracred-cli","index":1291,"timestampMs":1586119867000},{"description":"[32e087e](https://github.com/aracred/aracred-cli/commit/32e087e76f7e1c5911790ed64508cfb59e448369): initial commit","index":1292,"timestampMs":1583841786000},{"description":"[3ddfb88](https://github.com/aracred/aracred-cli/commit/3ddfb88738e47c20cf9ea58c2efd792aee1b6129): Saves JSON & CSV","index":1293,"timestampMs":1583855508000},{"description":"[3e76da9](https://github.com/aracred/aracred-cli/commit/3e76da91166b4e618c16fcf03a91656654793ed9): Merge pull request #3 from sembrestels/local-labels","index":1294,"timestampMs":1584736018000},{"description":"[46377a9](https://github.com/aracred/aracred-cli/commit/46377a96ccd136b5401df0ed5032a105a385dd49): Update README.md","index":1295,"timestampMs":1586115035000},{"description":"[5e8fc8e](https://github.com/aracred/aracred-cli/commit/5e8fc8eb37bcd473ee4acb90c32d8e7a8f6a77c7): Merge pull request #1 from burrrata/patch-1","index":1296,"timestampMs":1584727355000},{"description":"[5f858e9](https://github.com/aracred/aracred-cli/commit/5f858e9e9b52236fc3a085b38b1c7c5623dc814e): Update README.md","index":1297,"timestampMs":1586116855000},{"description":"[60eb231](https://github.com/aracred/aracred-cli/commit/60eb231938e7ad390175a13b46cf1161e23e915c): Add local labels generation feature","index":1298,"timestampMs":1584733391000},{"description":"[6cf9256](https://github.com/aracred/aracred-cli/commit/6cf92566dda9fff26663c6dfe2e3ae277ae0d908): add github workflow","index":1299,"timestampMs":1585132575000},{"description":"[7a3226b](https://github.com/aracred/aracred-cli/commit/7a3226b449f5a2bb9e1d0528959c3aca8ce18f8f): add github entry in prompt","index":1300,"timestampMs":1585128878000},{"description":"[8b3379b](https://github.com/aracred/aracred-cli/commit/8b3379b6dedd5d8ad5970d14cdd6c507909d3fcf): Improve readme and fix typos","index":1301,"timestampMs":1584729372000},{"description":"[93373cc](https://github.com/aracred/aracred-cli/commit/93373ccc6bf6185127f6b17ad5626cc110fe5e08): Merge pull request #4 from pythonpete32/wallaby","index":1302,"timestampMs":1585126267000},{"description":"[9adcfac](https://github.com/aracred/aracred-cli/commit/9adcfac02e9dc6203f733946b48815c16c4bda6a): Update README.md","index":1303,"timestampMs":1586115569000},{"description":"[a7eb7ab](https://github.com/aracred/aracred-cli/commit/a7eb7abbb97a3acb715b06da2a906cd6646b56bc): add willaby & jest support","index":1304,"timestampMs":1585126105000},{"description":"[a0ebe6c](https://github.com/aracred/aracred-cli/commit/a0ebe6c6c881f02ae127c92abd3795e597009031): update","index":1305,"timestampMs":1584722599000},{"description":"[a11f8d6](https://github.com/aracred/aracred-cli/commit/a11f8d670ef711b410415b8444330781522c3273): Update README.md","index":1306,"timestampMs":1586115692000},{"description":"[a39a9e3](https://github.com/aracred/aracred-cli/commit/a39a9e3d229c78b1d5215a8c6faf435a23b996ab): Update README.md","index":1307,"timestampMs":1586115737000},{"description":"[b5820a4](https://github.com/aracred/aracred-cli/commit/b5820a49d275ad3e2441dc49ba0e9c932e7e01ed): add discorse validation","index":1308,"timestampMs":1585142847000},{"description":"[b8100f7](https://github.com/aracred/aracred-cli/commit/b8100f78f6295a440d2e6a9e95a9099504c53374): Update README.md","index":1309,"timestampMs":1586115523000},{"description":"[b06798e](https://github.com/aracred/aracred-cli/commit/b06798edf2d6f86723961bdd7a387dda3eadcb00): initial commit","index":1310,"timestampMs":1583707484000},{"description":"[bc959b6](https://github.com/aracred/aracred-cli/commit/bc959b6cd0e80d193876a8edb8ff0f18142ba558): Update readme.md","index":1311,"timestampMs":1584925959000},{"description":"[d265f3f](https://github.com/aracred/aracred-cli/commit/d265f3f3a462805b6c27dc7507b15be038730a06): working","index":1312,"timestampMs":1584468261000},{"description":"[dccb0ba](https://github.com/aracred/aracred-cli/commit/dccb0bae8344da0fa4bc886fd642bd819e5ab204): Merge pull request #7 from pythonpete32/source-validation","index":1313,"timestampMs":1585184645000},{"description":"[dcba3eb](https://github.com/aracred/aracred-cli/commit/dcba3eb54f781973155ef382ed674685adb9491f): Update README.md","index":1314,"timestampMs":1586115159000},{"description":"[fd8dac9](https://github.com/aracred/aracred-cli/commit/fd8dac99c58c603001fa56c8d2dd2553db8fa6c0): Merge pull request #5 from pythonpete32/github","index":1315,"timestampMs":1585134244000},{"description":"[fdf6857](https://github.com/aracred/aracred-cli/commit/fdf6857a29d796d7cfdea7f7d45a67a9c05d50d2): Merge pull request #2 from sembrestels/small-fix","index":1316,"timestampMs":1584727333000},{"description":"[#12](https://github.com/aracred/AraCred/issues/12): Setting up a Discord server with SourceCred and GitHub actions","index":1317,"timestampMs":1586638125000},{"description":"[#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":1318,"timestampMs":1586704018000},{"description":"[#15](https://github.com/aracred/AraCred/issues/15): AraCred Deployment Automation","index":1319,"timestampMs":1586705495000},{"description":"[#16](https://github.com/aracred/AraCred/issues/16): AraCred Dogfooding","index":1320,"timestampMs":1586705553000},{"description":"[#17](https://github.com/aracred/AraCred/issues/17): AraCred Pilot Projects","index":1321,"timestampMs":1586705865000},{"description":"[#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":1322,"timestampMs":1586712839000},{"description":"[#19](https://github.com/aracred/AraCred/issues/19): npx create-aracred","index":1323,"timestampMs":1586768126000},{"description":"[#2](https://github.com/aracred/AraCred/issues/2): re write `processScores.js`","index":1324,"timestampMs":1586269776000},{"description":"[#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":1325,"timestampMs":1586819336000},{"description":"[#23](https://github.com/aracred/AraCred/issues/23): AraCred Default Periods","index":1326,"timestampMs":1586821830000},{"description":"[#24](https://github.com/aracred/AraCred/issues/24): CredRank White/Black Lists","index":1327,"timestampMs":1586823283000},{"description":"[#25](https://github.com/aracred/AraCred/issues/25): AraCred MVP","index":1328,"timestampMs":1586858542000},{"description":"[#26](https://github.com/aracred/AraCred/issues/26): Simple Token Calculations","index":1329,"timestampMs":1586921943000},{"description":"[#3](https://github.com/aracred/AraCred/issues/3): Pass private key as GitHub secret","index":1330,"timestampMs":1586390052000},{"description":"[#4](https://github.com/aracred/AraCred/issues/4): Tidy Repo","index":1331,"timestampMs":1586390446000},{"description":"[#5](https://github.com/aracred/AraCred/issues/5): Add config file for DAO","index":1332,"timestampMs":1586390871000},{"description":"[#6](https://github.com/aracred/AraCred/issues/6): Create unit tests for `src/processGrain()`","index":1333,"timestampMs":1586396494000},{"description":"[#8](https://github.com/aracred/AraCred/issues/8): Write `setupAragon.test.js`","index":1334,"timestampMs":1586435403000},{"description":"[#9](https://github.com/aracred/AraCred/issues/9): Configure SC to save to config file","index":1335,"timestampMs":1586440155000},{"description":"[#3](https://github.com/aracred/TheSource/issues/3): GUIDE: Setting up a Discord server with SourceCred and GitHub actions","index":1336,"timestampMs":1586104764000},{"description":"[#1](https://github.com/aracred/aracred-cli/issues/1): AraCred Manual Mode Guide","index":1337,"timestampMs":1586116752000},{"description":"[#1](https://github.com/aracred/bot/issues/1): SourceCredified AraCred 1UPs 🍄","index":1338,"timestampMs":1586917207000},{"description":"[#2](https://github.com/aracred/bot/issues/2): Parser: namespace bot commands","index":1339,"timestampMs":1586934042000},{"description":"[#3](https://github.com/aracred/bot/issues/3): Add whitelisted channels environment variable","index":1340,"timestampMs":1586934224000},{"description":"[#5](https://github.com/aracred/bot/issues/5): Validation: Properly check addresses before submitting them","index":1341,"timestampMs":1586990170000},{"description":"[#6](https://github.com/aracred/bot/issues/6): Onboarding flow: Make bot conversational","index":1342,"timestampMs":1586990449000},{"description":"[#7](https://github.com/aracred/bot/issues/7): Bot initialization: Add initialization and validation flow for startup","index":1343,"timestampMs":1586990584000},{"description":"[#1](https://github.com/aracred/comms/issues/1): AraCred Overview Blog Post","index":1344,"timestampMs":1586709265000},{"description":"[#1](https://github.com/aracred/leaderboard/issues/1): New Leaderboard UI","index":1345,"timestampMs":1586706267000},{"description":"[#2](https://github.com/aracred/leaderboard/issues/2): Leaderboard Bot","index":1346,"timestampMs":1586706318000},{"description":"[#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":1347,"timestampMs":1586666816000},{"description":"[#2](https://github.com/aracred/onboarding/issues/2): AraCred Deployment","index":1348,"timestampMs":1586666998000},{"description":"[#3](https://github.com/aracred/onboarding/issues/3): User Onboarding Bot","index":1349,"timestampMs":1586705051000},{"description":"[#4](https://github.com/aracred/onboarding/issues/4): User Onboarding Survey","index":1350,"timestampMs":1586709014000},{"description":"[#5](https://github.com/aracred/onboarding/issues/5): Resolve app addresses from DAO name in dao.json","index":1351,"timestampMs":1586772477000},{"description":"[#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":1352,"timestampMs":1586772739000},{"description":"[#10](https://github.com/aracred/website/issues/10): Define AraCred Market Mechanics","index":1353,"timestampMs":1586705290000},{"description":"[#11](https://github.com/aracred/website/issues/11): Fix Spelling Errors","index":1354,"timestampMs":1586712148000},{"description":"[#2](https://github.com/aracred/website/issues/2): Docusaurus Deployment Tips","index":1355,"timestampMs":1586571331000},{"description":"[#7](https://github.com/aracred/website/issues/7): AraCred Market Simulation","index":1356,"timestampMs":1586662991000},{"description":"[#1](https://github.com/aracred/AraCred/pull/1): Split config","index":1357,"timestampMs":1586264552000},{"description":"[#10](https://github.com/aracred/AraCred/pull/10): Close a bunch of issues","index":1358,"timestampMs":1586446688000},{"description":"[#11](https://github.com/aracred/AraCred/pull/11): add sc config files","index":1359,"timestampMs":1586449916000},{"description":"[#13](https://github.com/aracred/AraCred/pull/13): Mainnet test","index":1360,"timestampMs":1586658580000},{"description":"[#20](https://github.com/aracred/AraCred/pull/20): Add Evalir to Aracred","index":1361,"timestampMs":1586802611000},{"description":"[#21](https://github.com/aracred/AraCred/pull/21): Backfill worksession photos","index":1362,"timestampMs":1586810530000},{"description":"[#27](https://github.com/aracred/AraCred/pull/27): session 3 photos","index":1363,"timestampMs":1586995113000},{"description":"[#7](https://github.com/aracred/AraCred/pull/7): Process scores patch","index":1364,"timestampMs":1586425681000},{"description":"[#1](https://github.com/aracred/TheSource/pull/1): Update generate-cred.yml","index":1365,"timestampMs":1586103666000},{"description":"[#2](https://github.com/aracred/TheSource/pull/2): Update generate-cred.yml","index":1366,"timestampMs":1586104083000},{"description":"[#4](https://github.com/aracred/bot/pull/4): DevOps: Add monitoring logs to commands","index":1367,"timestampMs":1586970997000},{"description":"[#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1368,"timestampMs":1587070982000},{"description":"[#9](https://github.com/aracred/bot/pull/9): Added command namespace recognition - !ac [command]","index":1369,"timestampMs":1587079858000},{"description":"[#1](https://github.com/aracred/website/pull/1): starting to docusaurus","index":1370,"timestampMs":1586566012000},{"description":"[#12](https://github.com/aracred/website/pull/12): Fix diagram url on \"Token Minting and Supply\" page","index":1371,"timestampMs":1586717760000},{"description":"[#13](https://github.com/aracred/website/pull/13): Docs2","index":1372,"timestampMs":1586727817000},{"description":"[#14](https://github.com/aracred/website/pull/14): Docs2","index":1373,"timestampMs":1586797004000},{"description":"[#15](https://github.com/aracred/website/pull/15): Fixed typo","index":1374,"timestampMs":1586914696000},{"description":"[#16](https://github.com/aracred/website/pull/16): PageRank link","index":1375,"timestampMs":1586987888000},{"description":"[#3](https://github.com/aracred/website/pull/3): didn't actually add users section","index":1376,"timestampMs":1586633970000},{"description":"[#4](https://github.com/aracred/website/pull/4): Docs2","index":1377,"timestampMs":1586645179000},{"description":"[#5](https://github.com/aracred/website/pull/5): Docs2","index":1378,"timestampMs":1586654103000},{"description":"[#6](https://github.com/aracred/website/pull/6): before adding live code plugin","index":1379,"timestampMs":1586656931000},{"description":"[#8](https://github.com/aracred/website/pull/8): Docs2","index":1380,"timestampMs":1586663009000},{"description":"[#9](https://github.com/aracred/website/pull/9): Docs2","index":1381,"timestampMs":1586664552000},{"description":"[aracred/AraCred](https://github.com/aracred/AraCred)","index":1382,"timestampMs":1586107856000},{"description":"[aracred/TheSource](https://github.com/aracred/TheSource)","index":1383,"timestampMs":1586103580000},{"description":"[aracred/aracred-cli](https://github.com/aracred/aracred-cli)","index":1384,"timestampMs":1586112376000},{"description":"[aracred/bot](https://github.com/aracred/bot)","index":1385,"timestampMs":1586801046000},{"description":"[aracred/comms](https://github.com/aracred/comms)","index":1386,"timestampMs":1586709194000},{"description":"[aracred/governance](https://github.com/aracred/governance)","index":1387,"timestampMs":1586709960000},{"description":"[aracred/leaderboard](https://github.com/aracred/leaderboard)","index":1388,"timestampMs":1586706187000},{"description":"[aracred/onboarding](https://github.com/aracred/onboarding)","index":1389,"timestampMs":1586666527000},{"description":"[aracred/website](https://github.com/aracred/website)","index":1390,"timestampMs":1586103440000},{"description":"[review](https://github.com/aracred/AraCred/pull/13#pullrequestreview-391815975) on [#13](https://github.com/aracred/AraCred/pull/13): Mainnet test","index":1391,"timestampMs":1586658808000},{"description":"[review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1392,"timestampMs":1587071400000},{"description":"[review](https://github.com/aracred/bot/pull/8#pullrequestreview-395035075) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1393,"timestampMs":1587075078000},{"description":"[review](https://github.com/aracred/website/pull/15#pullrequestreview-393444362) on [#15](https://github.com/aracred/website/pull/15): Fixed typo","index":1394,"timestampMs":1586924060000},{"description":"[@AlexMasmej](https://github.com/AlexMasmej)","index":1395,"timestampMs":null},{"description":"[@Beanow](https://github.com/Beanow)","index":1396,"timestampMs":null},{"description":"[@Evalir](https://github.com/Evalir)","index":1397,"timestampMs":null},{"description":"[@c0mput3rxz](https://github.com/c0mput3rxz)","index":1398,"timestampMs":null},{"description":"[@vntrp](https://github.com/vntrp)","index":1399,"timestampMs":null},{"description":"@0xGabi","index":1400,"timestampMs":null},{"description":"@Aaron","index":1401,"timestampMs":null},{"description":"@burrrata","index":1402,"timestampMs":null},{"description":"@crisorg","index":1403,"timestampMs":null},{"description":"@cslarson","index":1404,"timestampMs":null},{"description":"@dandelion","index":1405,"timestampMs":null},{"description":"@evalir","index":1406,"timestampMs":null},{"description":"@fabriziovigevani","index":1407,"timestampMs":null},{"description":"@fioreb","index":1408,"timestampMs":null},{"description":"@hammadj","index":1409,"timestampMs":null},{"description":"@li","index":1410,"timestampMs":null},{"description":"@lkngtn","index":1411,"timestampMs":null},{"description":"@mzargham","index":1412,"timestampMs":null},{"description":"@onbjerg","index":1413,"timestampMs":null},{"description":"@rperez","index":1414,"timestampMs":null},{"description":"@sembrestels","index":1415,"timestampMs":null},{"description":"@willjgriff","index":1416,"timestampMs":null}],"sortedNodeAddresses":[["sourcecred","discord","MEMBER","bot","699326460120530944"],["sourcecred","discord","MEMBER","user","143776454050709505"],["sourcecred","discord","MEMBER","user","199630270285086720"],["sourcecred","discord","MEMBER","user","208321561982271489"],["sourcecred","discord","MEMBER","user","291388682710024192"],["sourcecred","discord","MEMBER","user","333143183355543552"],["sourcecred","discord","MEMBER","user","371754999304290304"],["sourcecred","discord","MEMBER","user","440281764204642314"],["sourcecred","discord","MEMBER","user","464169801036726292"],["sourcecred","discord","MEMBER","user","505789102222737420"],["sourcecred","discord","MEMBER","user","537858848912834561"],["sourcecred","discord","MEMBER","user","633708951447535616"],["sourcecred","discord","MEMBER","user","665203331639148553"],["sourcecred","discord","MEMBER","user","683892894767251489"],["sourcecred","discord","MESSAGE","695344752031432766","695669843034243134"],["sourcecred","discord","MESSAGE","695344752031432766","696451005914546256"],["sourcecred","discord","MESSAGE","695344752031432766","696454968831508630"],["sourcecred","discord","MESSAGE","695344752031432766","696455224532926464"],["sourcecred","discord","MESSAGE","695344752031432766","696609260196593664"],["sourcecred","discord","MESSAGE","695344752031432766","696708274682069062"],["sourcecred","discord","MESSAGE","695344752031432766","696730540039995493"],["sourcecred","discord","MESSAGE","695344752031432766","696740396331696198"],["sourcecred","discord","MESSAGE","695344752031432766","696769305131614260"],["sourcecred","discord","MESSAGE","695344752031432766","696853096441184326"],["sourcecred","discord","MESSAGE","695344752031432766","698673271729553469"],["sourcecred","discord","MESSAGE","695344752031432766","698691171811328080"],["sourcecred","discord","MESSAGE","695344752031432766","698710294427467857"],["sourcecred","discord","MESSAGE","695344752031432766","698710365046833192"],["sourcecred","discord","MESSAGE","695344752031432766","698799127244308550"],["sourcecred","discord","MESSAGE","695344752031432766","698897288373993508"],["sourcecred","discord","MESSAGE","695344752031432766","698919569078878289"],["sourcecred","discord","MESSAGE","695344752031432766","698921167011971168"],["sourcecred","discord","MESSAGE","695344752031432766","698921390845198426"],["sourcecred","discord","MESSAGE","695344752031432766","698932174396850236"],["sourcecred","discord","MESSAGE","695344752031432766","698935929942966332"],["sourcecred","discord","MESSAGE","695344752031432766","698941350531301477"],["sourcecred","discord","MESSAGE","695344752031432766","698946297012420619"],["sourcecred","discord","MESSAGE","695344752031432766","698965088530595990"],["sourcecred","discord","MESSAGE","695344752031432766","698965418370400296"],["sourcecred","discord","MESSAGE","695344752031432766","698968459890917436"],["sourcecred","discord","MESSAGE","695344752031432766","698968989878976612"],["sourcecred","discord","MESSAGE","695344752031432766","698969370533298296"],["sourcecred","discord","MESSAGE","695344752031432766","698969730580742174"],["sourcecred","discord","MESSAGE","695344752031432766","698970943955140738"],["sourcecred","discord","MESSAGE","695344752031432766","698973708316049488"],["sourcecred","discord","MESSAGE","695344752031432766","698982179069362196"],["sourcecred","discord","MESSAGE","695344752031432766","699006982681657354"],["sourcecred","discord","MESSAGE","695344752031432766","699007297099268116"],["sourcecred","discord","MESSAGE","695344752031432766","699016223303794728"],["sourcecred","discord","MESSAGE","695344752031432766","699020835096231937"],["sourcecred","discord","MESSAGE","695344752031432766","699021694240686190"],["sourcecred","discord","MESSAGE","695344752031432766","699022762215211088"],["sourcecred","discord","MESSAGE","695344752031432766","699024432244588644"],["sourcecred","discord","MESSAGE","695344752031432766","699025335148216410"],["sourcecred","discord","MESSAGE","695344752031432766","699124769349566484"],["sourcecred","discord","MESSAGE","695344752031432766","699137595724267520"],["sourcecred","discord","MESSAGE","695344752031432766","699302777167413379"],["sourcecred","discord","MESSAGE","695344752031432766","699304903796981771"],["sourcecred","discord","MESSAGE","695344752031432766","699306499930980452"],["sourcecred","discord","MESSAGE","695344752031432766","699318638519255111"],["sourcecred","discord","MESSAGE","695344752031432766","699325373472702534"],["sourcecred","discord","MESSAGE","695344752031432766","699325915578236949"],["sourcecred","discord","MESSAGE","695344752031432766","699326575627206778"],["sourcecred","discord","MESSAGE","695344752031432766","699342838756016128"],["sourcecred","discord","MESSAGE","695344752031432766","699358233437143163"],["sourcecred","discord","MESSAGE","695344752031432766","699383579402174494"],["sourcecred","discord","MESSAGE","695344752031432766","699636647557464194"],["sourcecred","discord","MESSAGE","695344752031432766","699696022477340735"],["sourcecred","discord","MESSAGE","695344752031432766","700038397376331798"],["sourcecred","discord","MESSAGE","695344917068906598","697073300131807274"],["sourcecred","discord","MESSAGE","695344917068906598","697081143551328256"],["sourcecred","discord","MESSAGE","695344917068906598","697318813192028200"],["sourcecred","discord","MESSAGE","695344917068906598","697375832364023889"],["sourcecred","discord","MESSAGE","696400331260821586","698659683526901810"],["sourcecred","discord","MESSAGE","696400331260821586","699287660589613148"],["sourcecred","discord","MESSAGE","696420039141752863","696427343220047872"],["sourcecred","discord","MESSAGE","696420039141752863","696440757908799568"],["sourcecred","discord","MESSAGE","696420039141752863","696441890048049232"],["sourcecred","discord","MESSAGE","696420039141752863","696452154268975225"],["sourcecred","discord","MESSAGE","696420039141752863","696730851802742794"],["sourcecred","discord","MESSAGE","696420039141752863","696789204767866911"],["sourcecred","discord","MESSAGE","696420039141752863","699020484167073792"],["sourcecred","discord","MESSAGE","696420039141752863","699122711745527878"],["sourcecred","discord","MESSAGE","696420039141752863","699123164340551691"],["sourcecred","discord","MESSAGE","696420039141752863","699274952301609111"],["sourcecred","discord","MESSAGE","696420039141752863","699275129204637708"],["sourcecred","discord","MESSAGE","696420039141752863","699275497984622760"],["sourcecred","discord","MESSAGE","696420039141752863","699276546795372595"],["sourcecred","discord","MESSAGE","696420039141752863","699277478530646016"],["sourcecred","discord","MESSAGE","696420039141752863","699278809974833224"],["sourcecred","discord","MESSAGE","696420039141752863","699404949448163368"],["sourcecred","discord","MESSAGE","696420039141752863","699406916300046346"],["sourcecred","discord","MESSAGE","696420039141752863","699407535194767410"],["sourcecred","discord","MESSAGE","696420039141752863","699408033343733841"],["sourcecred","discord","MESSAGE","696420039141752863","699410487020093501"],["sourcecred","discord","MESSAGE","696420039141752863","699558251074682931"],["sourcecred","discord","MESSAGE","696420039141752863","699560532046250034"],["sourcecred","discord","MESSAGE","696420039141752863","699939694221328435"],["sourcecred","discord","MESSAGE","696420039141752863","700016555521736837"],["sourcecred","discord","MESSAGE","696420039141752863","700064770367160361"],["sourcecred","discord","MESSAGE","696420039141752863","700064920104075394"],["sourcecred","discord","MESSAGE","696420039141752863","700073516900417556"],["sourcecred","discord","MESSAGE","696420039141752863","700078148615798814"],["sourcecred","discord","MESSAGE","696420039141752863","700083246087667833"],["sourcecred","discord","MESSAGE","696420039141752863","700085865933832252"],["sourcecred","discord","MESSAGE","696420039141752863","700087985634541678"],["sourcecred","discord","MESSAGE","696420039141752863","700345588725841990"],["sourcecred","discord","MESSAGE","696420039141752863","700354840445976616"],["sourcecred","discord","MESSAGE","696420039141752863","700468593451597902"],["sourcecred","discord","MESSAGE","696420197644632116","698667046661128244"],["sourcecred","discord","MESSAGE","696420197644632116","698672127418695751"],["sourcecred","discord","MESSAGE","696420197644632116","698673539011837994"],["sourcecred","discord","MESSAGE","696420197644632116","698683402920001637"],["sourcecred","discord","MESSAGE","696420197644632116","698956579168321617"],["sourcecred","discord","MESSAGE","696420197644632116","699017594287685672"],["sourcecred","discord","MESSAGE","696420197644632116","699283043940302898"],["sourcecred","discord","MESSAGE","696420197644632116","699284090607763506"],["sourcecred","discord","MESSAGE","696420197644632116","699303864872075295"],["sourcecred","discord","MESSAGE","696420197644632116","699352914476400712"],["sourcecred","discord","MESSAGE","698942081858666527","699821888431587439"],["sourcecred","discord","MESSAGE","698942081858666527","699822779670724650"],["sourcecred","discord","MESSAGE","700023168995295233","700033440564641854"],["sourcecred","discord","MESSAGE","700023168995295233","700036022368731256"],["sourcecred","discord","MESSAGE","700023168995295233","700038868707180644"],["sourcecred","discord","MESSAGE","700023168995295233","700039441799970969"],["sourcecred","discord","MESSAGE","700023168995295233","700040376085381152"],["sourcecred","discord","MESSAGE","700023168995295233","700040917926543422"],["sourcecred","discord","MESSAGE","700023168995295233","700040992916766780"],["sourcecred","discord","MESSAGE","700023168995295233","700044206176993470"],["sourcecred","discord","MESSAGE","700023168995295233","700044421760286721"],["sourcecred","discord","MESSAGE","700023168995295233","700044496049799228"],["sourcecred","discord","MESSAGE","700023168995295233","700044548411490335"],["sourcecred","discord","MESSAGE","700023168995295233","700044635619328131"],["sourcecred","discord","MESSAGE","700023168995295233","700044689285316738"],["sourcecred","discord","MESSAGE","700023168995295233","700049028251123832"],["sourcecred","discord","MESSAGE","700023168995295233","700049257490808933"],["sourcecred","discord","MESSAGE","700023168995295233","700049378643017889"],["sourcecred","discord","MESSAGE","700023168995295233","700051768008114186"],["sourcecred","discord","MESSAGE","700023168995295233","700055780807802900"],["sourcecred","discord","MESSAGE","700023168995295233","700056792524128306"],["sourcecred","discord","MESSAGE","700023168995295233","700059334679330946"],["sourcecred","discord","MESSAGE","700023168995295233","700059353306234910"],["sourcecred","discord","MESSAGE","700023168995295233","700059384751063091"],["sourcecred","discord","MESSAGE","700023168995295233","700059438136033361"],["sourcecred","discord","MESSAGE","700023168995295233","700059438526103572"],["sourcecred","discord","MESSAGE","700023168995295233","700059538023514154"],["sourcecred","discord","MESSAGE","700023168995295233","700061097583050871"],["sourcecred","discord","MESSAGE","700023168995295233","700062058405953678"],["sourcecred","discord","MESSAGE","700023168995295233","700062189503119381"],["sourcecred","discord","MESSAGE","700023168995295233","700062400774275204"],["sourcecred","discord","MESSAGE","700023168995295233","700063628711166054"],["sourcecred","discord","MESSAGE","700023168995295233","700064631778967634"],["sourcecred","discord","MESSAGE","700023168995295233","700064632144003103"],["sourcecred","discord","MESSAGE","700023168995295233","700118599003668510"],["sourcecred","discord","MESSAGE","700023168995295233","700335319349985310"],["sourcecred","discord","MESSAGE","700023168995295233","700335919315550299"],["sourcecred","discord","MESSAGE","700023168995295233","700365992571699350"],["sourcecred","discord","MESSAGE","700023168995295233","700366555233517630"],["sourcecred","discord","MESSAGE","700023168995295233","700367514638483537"],["sourcecred","discord","MESSAGE","700023168995295233","700369922630615040"],["sourcecred","discord","MESSAGE","700023168995295233","700370207419662458"],["sourcecred","discord","MESSAGE","700023168995295233","700370372230643763"],["sourcecred","discord","MESSAGE","700023168995295233","700371208880914563"],["sourcecred","discord","MESSAGE","700023168995295233","700371209241624656"],["sourcecred","discord","MESSAGE","700023168995295233","700371558480216124"],["sourcecred","discord","MESSAGE","700023168995295233","700397237930295386"],["sourcecred","discord","MESSAGE","700023168995295233","700397481799974962"],["sourcecred","discord","MESSAGE","700023168995295233","700397482362011769"],["sourcecred","discord","MESSAGE","700023168995295233","700397866581229620"],["sourcecred","discord","MESSAGE","700023168995295233","700397927478067221"],["sourcecred","discord","MESSAGE","700023168995295233","700397997707755530"],["sourcecred","discord","MESSAGE","700023168995295233","700398207733334077"],["sourcecred","discord","MESSAGE","700023168995295233","700398301412982965"],["sourcecred","discord","MESSAGE","700023168995295233","700398301727555604"],["sourcecred","discord","MESSAGE","700023168995295233","700399163313094746"],["sourcecred","discord","REACTION","695344752031432766","❤️","571023281382227978","695669843034243134"],["sourcecred","discord","REACTION","695344752031432766","👍","118260545211072517","696454968831508630"],["sourcecred","discord","REACTION","695344752031432766","👍","118260545211072517","696455224532926464"],["sourcecred","discord","REACTION","695344752031432766","👍","250086586450968576","699021694240686190"],["sourcecred","discord","REACTION","695344752031432766","👍","250086586450968576","699025335148216410"],["sourcecred","discord","REACTION","695344752031432766","👍","571023281382227978","695669843034243134"],["sourcecred","discord","REACTION","695344752031432766","👍","657069807505637397","699025335148216410"],["sourcecred","discord","REACTION","695344752031432766","👍","657069807505637397","699326575627206778"],["sourcecred","discord","REACTION","695344752031432766","💯","571023281382227978","696730540039995493"],["sourcecred","discord","REACTION","695344752031432766","💯","657069807505637397","698965418370400296"],["sourcecred","discord","REACTION","695344752031432766","🔥","250086586450968576","698969730580742174"],["sourcecred","discord","REACTION","695344752031432766","🔥","321092785921064961","698973708316049488"],["sourcecred","discord","REACTION","695344752031432766","🔥","571023281382227978","698921390845198426"],["sourcecred","discord","REACTION","696400331260821586","🔥","118260545211072517","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","250086586450968576","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","291388682710024192","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","291388682710024192","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","321092785921064961","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","440281764204642314","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","571023281382227978","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","571023281382227978","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","683892894767251489","698659683526901810"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","696427343220047872"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","696441890048049232"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","699123164340551691"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","700087985634541678"],["sourcecred","discord","REACTION","696420039141752863","🔥","321092785921064961","699560532046250034"],["sourcecred","discord","REACTION","696420039141752863","🔥","571023281382227978","699275497984622760"],["sourcecred","discord","REACTION","696420039141752863","🔥","571023281382227978","700064920104075394"],["sourcecred","discord","REACTION","696420197644632116","👍","537858848912834561","699284090607763506"],["sourcecred","discord","REACTION","698942081858666527","👍","250086586450968576","699822779670724650"],["sourcecred","discord","REACTION","700023168995295233","👍","657069807505637397","700040376085381152"],["sourcecred","discord","REACTION","700023168995295233","💯","321092785921064961","700040917926543422"],["sourcecred","discord","REACTION","700023168995295233","💯","657069807505637397","700040917926543422"],["sourcecred","discord","REACTION","700023168995295233","🔥","363774203960360961","700039441799970969"],["sourcecred","git","COMMIT","0097f202e6f5d2c003e2ce168d124909f19458d7"],["sourcecred","git","COMMIT","00ab6982140ebd949db7457512b233b7aa3afa1f"],["sourcecred","git","COMMIT","014093e17900e748bb8f82656443ec621bd8a658"],["sourcecred","git","COMMIT","02350169d0e77e280968a062a1e98a60a0d4c5d8"],["sourcecred","git","COMMIT","0245a4002a35c2adccfed1f68a675c30ba871ba5"],["sourcecred","git","COMMIT","02e3a39d76183975fa9a0671de0c7922274b6abc"],["sourcecred","git","COMMIT","02f4d3623ae4e89fa6232477d97fe32b27aae7c5"],["sourcecred","git","COMMIT","030e8ecc0d83eb09cc3ac614a607eb119aab7fa3"],["sourcecred","git","COMMIT","031a68eb5a45b70c806197b47783b1b4ae4332f0"],["sourcecred","git","COMMIT","0326166091410578eaf7c25d9f6736cd4533f9cd"],["sourcecred","git","COMMIT","03604a7d8f9a6f488f7990309e70066a1260483d"],["sourcecred","git","COMMIT","0388fb0219a7460e6726b34835c670986be5406c"],["sourcecred","git","COMMIT","03e1112bf4099083d81386043099e4876599d53d"],["sourcecred","git","COMMIT","0470e9f5c13a7c36b0934ca935365649872ad849"],["sourcecred","git","COMMIT","05c78a85d3b82074eb0e966c43eaf29f53e39426"],["sourcecred","git","COMMIT","06e6bf089f69a108cae63a413e3a3d0a6c0d40fa"],["sourcecred","git","COMMIT","0764e2b7701a6cd6076622bce90c3d3030e7d08a"],["sourcecred","git","COMMIT","07d5c9eafed794bfbde34705c0232dfdbb47bd9c"],["sourcecred","git","COMMIT","07e0e5f00e18e00a12892b47bd3f5b87418377d5"],["sourcecred","git","COMMIT","08aa4aa95a936798295f7d02cfa54c1441ae7aa3"],["sourcecred","git","COMMIT","0a23c189b1d776985b6759cfb65b75a5b0dbe388"],["sourcecred","git","COMMIT","0b351412cfa92c8edabea1449da16a7a2128c81f"],["sourcecred","git","COMMIT","0c32d96da86885a0d730f8398a23403372117d4b"],["sourcecred","git","COMMIT","0c44b7c5b7ac2243b2fa984a6abc9c91762a8a33"],["sourcecred","git","COMMIT","0cc15c54f0ac08b76b0b20231523123c68e787cc"],["sourcecred","git","COMMIT","0e468843191ad3a24ff5b803b2e388a12e88a289"],["sourcecred","git","COMMIT","0e6c46576a8feeb07054584458ebdec61fd886f3"],["sourcecred","git","COMMIT","0e9dbd8406b256f6b5e553d6769683a55909ab84"],["sourcecred","git","COMMIT","1041be12a4aee28587ede5b1a532c6595de78c70"],["sourcecred","git","COMMIT","11a45eb188a756e31f2ece0afcf10afb5e30112f"],["sourcecred","git","COMMIT","11fcd09a0cde08af08b5c5c951f54c150cf47ea1"],["sourcecred","git","COMMIT","120b10d34d5e804b21984569c113e37036efe669"],["sourcecred","git","COMMIT","1222e49b4269f15b2c71cfe4b62b1333abeea581"],["sourcecred","git","COMMIT","12cf0f16d406f14c2597abc130c4d2bfa9927f32"],["sourcecred","git","COMMIT","12ddd4e35607c0184b898c898e26e45c6017642d"],["sourcecred","git","COMMIT","12f5e68f287c17d2e7fbe424b996b269c74c0e8f"],["sourcecred","git","COMMIT","135b198b82d822d1d1a15b3683da0b76487c3e6d"],["sourcecred","git","COMMIT","13634414337e730fbcb403e2657a8007347ddd8d"],["sourcecred","git","COMMIT","13fc50d22e2353cf2bb38948cae4fb5fb591ce6c"],["sourcecred","git","COMMIT","1582ec34530ff6b7055382319336acc3f82de567"],["sourcecred","git","COMMIT","15a8127bc5402c7224bc592f890a5bd7f793c6a5"],["sourcecred","git","COMMIT","15e6db685e730aa55697d6fc8f60e9006732d2db"],["sourcecred","git","COMMIT","16309da6c786efe9dc1f745c61ad4f2c2ad61d76"],["sourcecred","git","COMMIT","16456a0e6dce09102122b50f42b185c330bb7b25"],["sourcecred","git","COMMIT","169704b1d09d4498ff0eaf2276bc40e79fffdf7e"],["sourcecred","git","COMMIT","1798e29eb0b6d8dd5e4f14ffcc2f25644e736762"],["sourcecred","git","COMMIT","17a658ce22542db61a1bae02316d8c0e082fa52f"],["sourcecred","git","COMMIT","17ec0dcf84726a4da739f0cbe36cd1908477e4cb"],["sourcecred","git","COMMIT","1823aa73078796ecf98dd56d9c134ccf2192e686"],["sourcecred","git","COMMIT","1834ed59b6a58195aef57af492f3122a94aac239"],["sourcecred","git","COMMIT","18c5aee0a819fd4f7877321af5fd04791f85c6f8"],["sourcecred","git","COMMIT","191e73e429ab193e59189f44b363d69613ee0315"],["sourcecred","git","COMMIT","1a16f1ec50e59e3baf9462677fa2c4f03ee2f9c8"],["sourcecred","git","COMMIT","1a21759b0bf3dbf3f524a23bf10c8e4a114def8c"],["sourcecred","git","COMMIT","1a3252694d719fb389bb10c0e24d727e61a3f8a3"],["sourcecred","git","COMMIT","1a7929462fc35448408f0d854a6c8c898c2db94f"],["sourcecred","git","COMMIT","1b5127e0416b329fc4dcd1d988d29489bea9016f"],["sourcecred","git","COMMIT","1cac15ecae5e636fd5d049fc5993ccd113126e41"],["sourcecred","git","COMMIT","1d8ee2b3aa6e25bcf60ec6e52bf5328c0866cdc5"],["sourcecred","git","COMMIT","1dc4a2c23525043a7b6e32a79837cb6a5a62fd97"],["sourcecred","git","COMMIT","1e08344d06d9089d381e91e2bee0c1adf3fe3b9d"],["sourcecred","git","COMMIT","1ea710efed95a3abd2613ee16b3aaea6110def50"],["sourcecred","git","COMMIT","1eea54a1361eb6aedba221f65f86205866b97322"],["sourcecred","git","COMMIT","1eed38c4cebd63ab6fc9537564a5304a870caa0c"],["sourcecred","git","COMMIT","1f350ead22cb503932ec36b9d21b735eb97eb256"],["sourcecred","git","COMMIT","2074791c680ee3d896c6c819ee0244719a7e510c"],["sourcecred","git","COMMIT","20796df7555b0c191dd575542000d50d98c034cc"],["sourcecred","git","COMMIT","21196b9342e552cc4fc6a9f213ea42768f3590d6"],["sourcecred","git","COMMIT","21df4319db26f8c3ed6eed74b2076026cad5c070"],["sourcecred","git","COMMIT","221754a5dbe3ebdf6a0fc5080de82669f5476b83"],["sourcecred","git","COMMIT","225168780b86a4b41d38845653c5d8759d1d37ad"],["sourcecred","git","COMMIT","22f57e7b323b0800c218b270980286c105ff7760"],["sourcecred","git","COMMIT","234d3b02b5491114f1257e23fcaf2bf880eee376"],["sourcecred","git","COMMIT","23d2d9d76214f6b6309676e2d369fe22f495943c"],["sourcecred","git","COMMIT","25c16bb85801279196018b44ec0db0834fadc4a2"],["sourcecred","git","COMMIT","26b69c05b19e8c57f2d16f77ab4d86b76247ce1b"],["sourcecred","git","COMMIT","275d163efdd812cdcd6ae2f5a8aff1bab3bed0e7"],["sourcecred","git","COMMIT","27b2bf3d7da83e04295aa1c2297e50ce8157f435"],["sourcecred","git","COMMIT","28b0e3f2d8fd42569eb803d10435aa8c0edf28f4"],["sourcecred","git","COMMIT","29d9a8ef0d738d8b1bdae873c892af41858cda0a"],["sourcecred","git","COMMIT","2a1204b44f44d6d93cf952e1804aef25ffbdd78f"],["sourcecred","git","COMMIT","2a6a498e1f06f55bc8d72380017b4d4060e27123"],["sourcecred","git","COMMIT","2aaae9c777eb4801ef65192afd1c7553ceb74012"],["sourcecred","git","COMMIT","2ac1a7e110486f19483abeff54c243335640c923"],["sourcecred","git","COMMIT","2b67c252af08687a1c02e924757e383977d4d4d7"],["sourcecred","git","COMMIT","2b6ed00bd26907f91649e266613daba56cbaa0ee"],["sourcecred","git","COMMIT","2b91470d79d6e707d2e8cb3a794ebe8c4d7b3484"],["sourcecred","git","COMMIT","2bd813f09f98fa3b26934f6ff7faaab6ea73f1e6"],["sourcecred","git","COMMIT","2c407f36d0c5b27d2c474b335cabb81cfe2edeca"],["sourcecred","git","COMMIT","2cee732bc11b712814855cfb1d9b5b279cef6fb9"],["sourcecred","git","COMMIT","2d290b2288a14d494f0fc18bfac882ef6c617e6a"],["sourcecred","git","COMMIT","2d44191a996951ccbed0009280899614d63174c9"],["sourcecred","git","COMMIT","2d9e5bd17dbe78235bca6bfd44b6a910d3c4a951"],["sourcecred","git","COMMIT","2e4d02b5022b744b43eba4a032fa855b765aa0ad"],["sourcecred","git","COMMIT","2f42a2a3916fe6ede97f1fac9adc1897fcbaa2be"],["sourcecred","git","COMMIT","2fad9aab6897201e6bc353b9746c03d1e728d433"],["sourcecred","git","COMMIT","30014c11841c9a605cc94d517ece6b867afd8cef"],["sourcecred","git","COMMIT","30758d04aa4da97fc0aced1fa22cbdee4a82c792"],["sourcecred","git","COMMIT","309a89586da5e2d44b48a607c9334aef6f6db3fb"],["sourcecred","git","COMMIT","30ab2ab8774f20e9541f08c657e6ec9ab08504f0"],["sourcecred","git","COMMIT","30d221dce50b378b1c7305bda09bea3f77887415"],["sourcecred","git","COMMIT","30ebf64342f800953d06f2b0ed888ac8d4495f69"],["sourcecred","git","COMMIT","311bf26aa5268a067b0bfc8708a922d2fd3d0a81"],["sourcecred","git","COMMIT","314f037efaaf34002934fac72ee5b8c34e633117"],["sourcecred","git","COMMIT","317ffa1471a0179007b87f93aac2223666443d45"],["sourcecred","git","COMMIT","325b973a78cbe14ff3f5e9766faee18e85d5a408"],["sourcecred","git","COMMIT","32d6fc725adb844ed330499482232f2876de58d1"],["sourcecred","git","COMMIT","32e087e76f7e1c5911790ed64508cfb59e448369"],["sourcecred","git","COMMIT","336edf6f3e0b661f947432cf39bbd9d26299f29d"],["sourcecred","git","COMMIT","34723961199565937493834071665b871a632d5d"],["sourcecred","git","COMMIT","35bf0829c068aa20de51466ea118f7547707de00"],["sourcecred","git","COMMIT","364068ec8db86b378d630f591da3a02de8708798"],["sourcecred","git","COMMIT","36d7098c5f0c400dddec1e654523a2800782b78a"],["sourcecred","git","COMMIT","36ed95ddf8349ba3d557bfbbef066b2559b432a3"],["sourcecred","git","COMMIT","37b357cb88cf608d20589ce6ee51404561bb4b1c"],["sourcecred","git","COMMIT","37e3b7251566699d4341b3bdbb81ec8f554f7d87"],["sourcecred","git","COMMIT","380e74d47b6bfd2c48d5690093ab03e44b92d991"],["sourcecred","git","COMMIT","38f3240786ceec5b4c03d7a5ce0faa02512a8cde"],["sourcecred","git","COMMIT","391b32bfdb5ae37d2ce42d32319fbadde72663f3"],["sourcecred","git","COMMIT","392e601d3179506dfe7ec0ad20cd5f679696e66e"],["sourcecred","git","COMMIT","396e5f791be1c3cf258b08afc6111cea8a409634"],["sourcecred","git","COMMIT","39ac367cc0a3e55366f190fe158a8517f97c2778"],["sourcecred","git","COMMIT","39b0a902c1c17512a536380503a506fc3ca615bb"],["sourcecred","git","COMMIT","39c6daaa5fca6305b908cdd28811107eba6bcbe3"],["sourcecred","git","COMMIT","39dae46151fcde41ea0b062ae95fde4109142e5b"],["sourcecred","git","COMMIT","3a5b33363a28c7bf7bc62329095b08110996d659"],["sourcecred","git","COMMIT","3a649e81c448757920b8c8bdcf8fc392f84d3580"],["sourcecred","git","COMMIT","3ab888c62c6fa64080e675c1f5146e156635ee6c"],["sourcecred","git","COMMIT","3b4871c09b67498e31575b8aaa9c09443d142a03"],["sourcecred","git","COMMIT","3b5a4715a9790e23a2e35d783d691e8d5ee58f80"],["sourcecred","git","COMMIT","3b8e4f54845388851293b26053f4df65b4dc98d1"],["sourcecred","git","COMMIT","3bc9934834b8a65291439cbba2daf061448e30fe"],["sourcecred","git","COMMIT","3c52923940969e0594c9693d27e80bf81e49bdfb"],["sourcecred","git","COMMIT","3c716ca39a305e5d8a9b2a5aa466039466d05a38"],["sourcecred","git","COMMIT","3d84fcf16de8bdd78f1098650394a66a29709a40"],["sourcecred","git","COMMIT","3ddfb88738e47c20cf9ea58c2efd792aee1b6129"],["sourcecred","git","COMMIT","3e3760007c9d0a9471f5f0d429ac4c30b1fb54f6"],["sourcecred","git","COMMIT","3e5e14457fa143425d264a4fa941591d19730ce3"],["sourcecred","git","COMMIT","3e76da91166b4e618c16fcf03a91656654793ed9"],["sourcecred","git","COMMIT","3f47f07723b97f0311f32b78da99358d2c6affb4"],["sourcecred","git","COMMIT","40036a386b07c41b89e594736dadb6134cf182de"],["sourcecred","git","COMMIT","4003769a8d62ca41d0d18d2bd72204b1d278d5b9"],["sourcecred","git","COMMIT","407f5d0adffd9ef41bff0bdbfb06f67213accea9"],["sourcecred","git","COMMIT","419d39d87eb31965a8f5775075cb80be6a57abd6"],["sourcecred","git","COMMIT","41e67273af614a1014bfb58bf6ca1b1cee1e6a8a"],["sourcecred","git","COMMIT","432042f6f965bb113ad50950cfdbb82c44f0dc59"],["sourcecred","git","COMMIT","436819fc13564c1c553d1d70390daff05a9052e9"],["sourcecred","git","COMMIT","4474d1b88abf39aa94df664898e4832fc05e52cc"],["sourcecred","git","COMMIT","44772353f8d950226d909b12778cbed4df3ed866"],["sourcecred","git","COMMIT","44c844475c5e2beb5acdefc7e4cd54e90d2d84e2"],["sourcecred","git","COMMIT","44cf0fbba18bf392a44962faed1e1300ed6fa459"],["sourcecred","git","COMMIT","44ea41a64de0f121ff05a4c07c6bb51e35eb5035"],["sourcecred","git","COMMIT","45d3445cd814d4666f19f4b1b480984f1c0381eb"],["sourcecred","git","COMMIT","45f25ea4eb646427c06e58b7e4ce2c4cd385c329"],["sourcecred","git","COMMIT","46377a96ccd136b5401df0ed5032a105a385dd49"],["sourcecred","git","COMMIT","4639ec8dba12e8c7d3b0bf589b8c8a09c522ae47"],["sourcecred","git","COMMIT","47d595cee7fd82afdb8666263baa96555bec7b30"],["sourcecred","git","COMMIT","48e5b4467c6107040c107d55bc2fbe07a57ea3a0"],["sourcecred","git","COMMIT","49af56b16491699e672947ed52ce86dcb3f9d9c2"],["sourcecred","git","COMMIT","4a623fbc3735c9a32d10199880214cc79caa4004"],["sourcecred","git","COMMIT","4a90734832ae4ad328fc062712e2deca88d7dcc4"],["sourcecred","git","COMMIT","4acea81dd65135e7afd23cd4c5484dae44bcb324"],["sourcecred","git","COMMIT","4b4c9ea9705465d39f33b39ea39819c9c77aa78b"],["sourcecred","git","COMMIT","4b792e8ce9c473dd059f633bec6659a18a6d8ff7"],["sourcecred","git","COMMIT","4c0f6c1fe42e875f8cd6a4be4fa88be63052d149"],["sourcecred","git","COMMIT","4dc6dc24deb0f914eabc017a1e488a4d62f1a893"],["sourcecred","git","COMMIT","4ec6bdc6a120e123052ebf690ddf6f32b9c35722"],["sourcecred","git","COMMIT","4ecd9028dbcbb9fbf51a22a30fc7af21bde61d33"],["sourcecred","git","COMMIT","5023eee71c9c3f2f16de1b22e9f37fda26c2f023"],["sourcecred","git","COMMIT","509d8c03b1a67129a3e98073dd24f93723cdfe41"],["sourcecred","git","COMMIT","50d289eff07e8033e20cd60a4670c798dea24b71"],["sourcecred","git","COMMIT","51308621ec2843350852fd31f8c0aa08d6d6a809"],["sourcecred","git","COMMIT","51c24fd07be9e40f534f48d43f936d829ac7b085"],["sourcecred","git","COMMIT","52c6264dbafc69c14a2381a41075ca4fbb020653"],["sourcecred","git","COMMIT","53b6f1b980b797f92d59fc4912b2fe6e999f774a"],["sourcecred","git","COMMIT","53d9b62862d0e8ef597dbffcbd0da8bcd12100cc"],["sourcecred","git","COMMIT","54090419b371cac747ca19327d54c4cddb375f05"],["sourcecred","git","COMMIT","554a82bc05cb713e92e8b3523b521078daf829f0"],["sourcecred","git","COMMIT","554c96438fdbee2031b8b5ac16aa2d6db6a7f40f"],["sourcecred","git","COMMIT","56172b6087400fa81c13f39f37b23ec11de3c9b2"],["sourcecred","git","COMMIT","56e1450abd29457d3aefbdaef3e38562727b7628"],["sourcecred","git","COMMIT","576bc68e63d6232f6c78bdd38e66da8585c04b0c"],["sourcecred","git","COMMIT","578544d0557614c00780089fa9f8343950f977fc"],["sourcecred","git","COMMIT","59aa572835669dee12a533857e417b17ba7b45e5"],["sourcecred","git","COMMIT","5a3bda08dd0c3b937345c449229b07241d70fb09"],["sourcecred","git","COMMIT","5ae6db74ec638222cb60957c3105e15de7f84457"],["sourcecred","git","COMMIT","5afb4e08170c1bd2e9f5fb4dd42c6ef5e2d23878"],["sourcecred","git","COMMIT","5b85a7405489f720ed0b9cb5150c2619d45c9e9d"],["sourcecred","git","COMMIT","5c621ee4c644713a2627afbfed745482fe5525ef"],["sourcecred","git","COMMIT","5c8e695ad340e65e85862dc8202d17e73d95bc3e"],["sourcecred","git","COMMIT","5d168f1298b62e831159fc316e394491b8386aa8"],["sourcecred","git","COMMIT","5dd05e3605e9940f65f2059e8c4286077a6439db"],["sourcecred","git","COMMIT","5e5171d6fb098184d18a44589e6cd4fd72c89c80"],["sourcecred","git","COMMIT","5e8fc8eb37bcd473ee4acb90c32d8e7a8f6a77c7"],["sourcecred","git","COMMIT","5f689010f6e0a438513b7e44ef37ae12d59ddf91"],["sourcecred","git","COMMIT","5f858e9e9b52236fc3a085b38b1c7c5623dc814e"],["sourcecred","git","COMMIT","5fc99f0926a38140bc41ab5322e28e43f5b50969"],["sourcecred","git","COMMIT","603c5f7b7e2afb54619ebe705b969a1acb102bf6"],["sourcecred","git","COMMIT","6044da77d77cd5f0bf782fd47faf7813cb9a00d7"],["sourcecred","git","COMMIT","604ba8761cdddc84bfa66485fe367495e5c8a65a"],["sourcecred","git","COMMIT","60df4a2278ec3dd51317900064eb3061be31c3b7"],["sourcecred","git","COMMIT","60eb231938e7ad390175a13b46cf1161e23e915c"],["sourcecred","git","COMMIT","61741f2ee4388880504f3a299dbd9c11698cc7dd"],["sourcecred","git","COMMIT","62452c343ffd843e938714bc2e87d5214d7dd315"],["sourcecred","git","COMMIT","62d47242332f4e1d86f7d7ae460f6dc998344aa2"],["sourcecred","git","COMMIT","636ec6a16064c8c33eb4763375d53ac5d8bd1a10"],["sourcecred","git","COMMIT","6414f44dff41af4a83f6ce0de71d809bd0482d00"],["sourcecred","git","COMMIT","65524097ed5de3a815e989bd420e38177fe70bca"],["sourcecred","git","COMMIT","65d2ca343c51020478094ba87b5db4af6464741a"],["sourcecred","git","COMMIT","66f27020fa0bd12851a0de1b206abec8c0b5e55d"],["sourcecred","git","COMMIT","67380485711017726e26a1687668d3d85b0e5d41"],["sourcecred","git","COMMIT","67b58587f295e53b396fed2b68ab34032fd86420"],["sourcecred","git","COMMIT","67d46229489309035b968391e6d14611ebd5c3ff"],["sourcecred","git","COMMIT","68038d157338b257f25c21b69def40c3eed1e43e"],["sourcecred","git","COMMIT","680e6502d527be2ddbd2bd73be5ddce9c5914e9b"],["sourcecred","git","COMMIT","69d1fb79b9680f7ec5e8554f2a8c0f81d74d9a9c"],["sourcecred","git","COMMIT","6a8bfca0c936f304cc9a2a3399676be46aea9960"],["sourcecred","git","COMMIT","6b96998e7c2f8ce52dc09ebc9ea524d07debe38e"],["sourcecred","git","COMMIT","6bc1161d99c436a23c35f5477862677701ef72e7"],["sourcecred","git","COMMIT","6caa3ed4ed86f8414354719138e0121db2d6a0dc"],["sourcecred","git","COMMIT","6cf92566dda9fff26663c6dfe2e3ae277ae0d908"],["sourcecred","git","COMMIT","6d3765a6c17e93aaddcd0f3fb8ace45c20bda183"],["sourcecred","git","COMMIT","6d51ee836e10e9d7b38006f5e496655ae18ad368"],["sourcecred","git","COMMIT","6e7bfcd7b00408f64472201ac06ea499e02e6fad"],["sourcecred","git","COMMIT","6f1a3968daa1e3d2bd607f81a599ac5ebf73f717"],["sourcecred","git","COMMIT","6f4ff7a024df84c214317b9c950d77f3ae3c4f57"],["sourcecred","git","COMMIT","6f93833ab9fbe162b81bb768df2d85c30ad06ab8"],["sourcecred","git","COMMIT","6fb58d2bcb10efa1a1836b0bf3357ae6bc33955b"],["sourcecred","git","COMMIT","713acbd4593a7a10b0544aaab7fc4ac05a66f9ae"],["sourcecred","git","COMMIT","71e08464a654b37b05fe5349649a03f457933fa1"],["sourcecred","git","COMMIT","73505c34a1b46a3dfcaca4d9c3aa116fdf51e0db"],["sourcecred","git","COMMIT","73dbfea00d269ff953ee50c034f1c6939743a5de"],["sourcecred","git","COMMIT","749f1e4c55deee2c1b640348b5965f5a4afd2886"],["sourcecred","git","COMMIT","753c27ee7d264f00c566fe6f56722528f1028704"],["sourcecred","git","COMMIT","7544c9c062ca14c025caa6d2d859e346287f5e06"],["sourcecred","git","COMMIT","758f9ebb14e2687de4f888bc94f872a610174a9f"],["sourcecred","git","COMMIT","75ebd0228f654f094c750b9885c5fe5aceb72486"],["sourcecred","git","COMMIT","777514f100a7dc7df22a9a3f2c57f6516e8efc44"],["sourcecred","git","COMMIT","78601376522c329c0940754020ff4654ffe937b8"],["sourcecred","git","COMMIT","78714ca856356791aae2576d01eb1c27fc7e4c3f"],["sourcecred","git","COMMIT","7931cf20b5146bca68e51d26cdebade9a1d3a662"],["sourcecred","git","COMMIT","7a3226b449f5a2bb9e1d0528959c3aca8ce18f8f"],["sourcecred","git","COMMIT","7a991963a5c8fc8dba4ab6a0c1e39421eeec45d6"],["sourcecred","git","COMMIT","7ad5a2af6206fa2c6d894364d1f7f40b55f08149"],["sourcecred","git","COMMIT","7b20ff37a9650a134c6f55fffd04fbdd5df83b43"],["sourcecred","git","COMMIT","7b6d61687e57d15a45d195b1edb567451a30db29"],["sourcecred","git","COMMIT","7b9dca52443325803e66cf596d274a0b11d252eb"],["sourcecred","git","COMMIT","7bdeb692b04c1a855be5d7dda172d87caafa3f1b"],["sourcecred","git","COMMIT","7cd874acd8a0f9009911452d1c0b363cb13f6669"],["sourcecred","git","COMMIT","7d1f6e2d13ab467719f287802b16e799deeb5e26"],["sourcecred","git","COMMIT","7d4bf5aecee8daf8516f468e96e15c6b4d0efbcf"],["sourcecred","git","COMMIT","7dc4514cd415cc926827fe02cb2891b8d6b80e5d"],["sourcecred","git","COMMIT","7dd45c9416c703d549b6e278b7bfbe75053b1ca0"],["sourcecred","git","COMMIT","7e0a5d65716af527389ac6bb38d14950d482e415"],["sourcecred","git","COMMIT","7ea5916ad6f9de9841f277901506ab72a39bf157"],["sourcecred","git","COMMIT","7fadabe4bad18a2e7326b241c874d5efbeb6a691"],["sourcecred","git","COMMIT","7ff7782489b7894149cc5f211d9ddafcf84918e9"],["sourcecred","git","COMMIT","80773639d8e225d1902d6145312108ecaa906a15"],["sourcecred","git","COMMIT","810abfb03976accd663d1b7b964bbc19a92ec609"],["sourcecred","git","COMMIT","817cf8940cb88ba790c6021ce54bcb018aa0ceb6"],["sourcecred","git","COMMIT","81a67f48120449294d3ab94cc767755e0bf3784e"],["sourcecred","git","COMMIT","8275d1b5f3a774264d5833c23d8958342940092f"],["sourcecred","git","COMMIT","842296b74203dbd599856a16880adcc904bd5b01"],["sourcecred","git","COMMIT","85b6e8cca2d6bc5709449605c8ac645fe74f78d5"],["sourcecred","git","COMMIT","85eeea117f1160d5b9da37473b35598a7c76b5f2"],["sourcecred","git","COMMIT","8619ee2452e7bf109169017acc968bba3e6e129d"],["sourcecred","git","COMMIT","862fd7fa57bf683b777fc8f3789b1df4aea08e9f"],["sourcecred","git","COMMIT","877be03e547648fb7a06110788e7dad226a05559"],["sourcecred","git","COMMIT","8849eeb9b3a0677fcc53c34ec1675a0e27cf0074"],["sourcecred","git","COMMIT","892f2bf564a1dbbc4215f2ee677ac9fc2aa763e3"],["sourcecred","git","COMMIT","89a15b5772d1dc21737181d7dda26695a0dfecca"],["sourcecred","git","COMMIT","89b337bef296df10a94c3b38ce1e2ef4396886d5"],["sourcecred","git","COMMIT","89ed10ec9153e166a0b7275c73003fc6fd86e76e"],["sourcecred","git","COMMIT","89f7cc8cbfd2fe93bcdb22e979f918a288bd8668"],["sourcecred","git","COMMIT","8a584e4b4f9c8a1111bf383d3a7a72ca3f8ee5b9"],["sourcecred","git","COMMIT","8b3379b6dedd5d8ad5970d14cdd6c507909d3fcf"],["sourcecred","git","COMMIT","8b44ea06f42e6a25fc0e87bfd38c28786001969a"],["sourcecred","git","COMMIT","8c62624a48c8a907f8b30e548abdc4e3764fb0df"],["sourcecred","git","COMMIT","8c797532d4140aa6ce0d5514cc6ca749ec6223e3"],["sourcecred","git","COMMIT","8ce123a903f0035d55349e86f54eb04838bb739f"],["sourcecred","git","COMMIT","8d960f0415e8ce8a45d7005c4ee399de672144d4"],["sourcecred","git","COMMIT","8da32bb2436219e3a55631e426a71d3d45d27c36"],["sourcecred","git","COMMIT","8dfd165458a81f0c67969620d6ab006b7e24aef0"],["sourcecred","git","COMMIT","8e04719f8d88512b8e8e19e17e42f7d960f6733b"],["sourcecred","git","COMMIT","8e13f39d1372b422a914857f324ee60abd2c795a"],["sourcecred","git","COMMIT","8e50a18b163cc513402b9c6c320672c83c46db84"],["sourcecred","git","COMMIT","8e56a3f94f680b5419df0fbfba1e9c985a495345"],["sourcecred","git","COMMIT","8e62a063ca7e54dc299eb6cabbf877a663b94c8f"],["sourcecred","git","COMMIT","8e80b8ff5bbc8123e57ac728fc9efcd1cd2d038b"],["sourcecred","git","COMMIT","8fe6cb1f84b56fff85a3bd87661712256a6806ab"],["sourcecred","git","COMMIT","90694dc47c350631227c33418a773a70137d5877"],["sourcecred","git","COMMIT","912ad7ced1c783afb97c7d9a66f7c3f5e2799312"],["sourcecred","git","COMMIT","9227670ae651f3da852b6ec3555aa15713ecce86"],["sourcecred","git","COMMIT","93373ccc6bf6185127f6b17ad5626cc110fe5e08"],["sourcecred","git","COMMIT","936cd22fe159bfd7f8bed539783f52c768f20a9f"],["sourcecred","git","COMMIT","937417e50fd087e175a28471de2176cb56ec7003"],["sourcecred","git","COMMIT","94e51d9a83cd67b4ad82c6529212e72aac84afe7"],["sourcecred","git","COMMIT","95d5884b12a5a5f1d18552277e37597fb6048297"],["sourcecred","git","COMMIT","9620fb8b0386160e364e38d63ad3fede4a182ce3"],["sourcecred","git","COMMIT","96d370369c4d00c35acbdbc499fed536101b6601"],["sourcecred","git","COMMIT","971440a0ff594fb02bef0ed3320e9371e17bc2c3"],["sourcecred","git","COMMIT","97158bddc34b68675ca0d7376d36259a03aef6ac"],["sourcecred","git","COMMIT","978f052b63aa209ed8107dad71c59a44643e74ba"],["sourcecred","git","COMMIT","982a89df2b5282578a7593eea49511ae803ee10b"],["sourcecred","git","COMMIT","98f76c4fa934a3e08dc4abb8c19697c7ed1da81c"],["sourcecred","git","COMMIT","9a5b489e1bbcc306ce4c6362aa5aadff60e6a27f"],["sourcecred","git","COMMIT","9a866424f84b469783dfe559a510ffc93e00d64b"],["sourcecred","git","COMMIT","9aa0ecd6f537c0f3d5f6f200c7c5448ddc28c9dd"],["sourcecred","git","COMMIT","9adcfac02e9dc6203f733946b48815c16c4bda6a"],["sourcecred","git","COMMIT","9b553ff5e3ec727ed0dd45321971a9911a1f04ad"],["sourcecred","git","COMMIT","9d0cacf29ee5f6668426c0dd9cca12ad7af906aa"],["sourcecred","git","COMMIT","9d8560f7a170cc2c0937ba7980dbcb466ad3140f"],["sourcecred","git","COMMIT","9ee6d1b3b0d7b06c3abeb7b496e830683c54f6d4"],["sourcecred","git","COMMIT","9fc6edf1983584d9e8336ae9cba525ba92e3249b"],["sourcecred","git","COMMIT","9fdf4415ba620e87f0c8182df47265aa34f5f8fd"],["sourcecred","git","COMMIT","a04b1795da49cbc6e5f795f3b6c6cc424e1b9d19"],["sourcecred","git","COMMIT","a04cff65d72e1b96813ce58a0122a50378ac496d"],["sourcecred","git","COMMIT","a04fe98b80805bd1b2eafab803bc54c45c360418"],["sourcecred","git","COMMIT","a0931cbed5f9f91298af9d27a02d69468722488b"],["sourcecred","git","COMMIT","a0ebe6c6c881f02ae127c92abd3795e597009031"],["sourcecred","git","COMMIT","a0fb9b822baab9e0fce8433be3de7d423e1b4dd6"],["sourcecred","git","COMMIT","a11f8d670ef711b410415b8444330781522c3273"],["sourcecred","git","COMMIT","a180ef16d0fb9e6adbb95731fcdd0e84955805d3"],["sourcecred","git","COMMIT","a2421f56156e52f5b7138ff17678e3c13e13a2f1"],["sourcecred","git","COMMIT","a2547eb7d1835e050a897172b563ccb69b769711"],["sourcecred","git","COMMIT","a2fd7e076795c62a07501d5fb71c03999cc4b145"],["sourcecred","git","COMMIT","a356fe37b3ee2256d529a625a42d890962870096"],["sourcecred","git","COMMIT","a37a48256d99a63fcf0a678ebbb34cca0fd95f23"],["sourcecred","git","COMMIT","a380b67f78535ff8cd03945a60f98400e084a525"],["sourcecred","git","COMMIT","a39a9e3d229c78b1d5215a8c6faf435a23b996ab"],["sourcecred","git","COMMIT","a3a0462dc68b9d35f30abd2ce16199a9450383f4"],["sourcecred","git","COMMIT","a433d846e9ff70c98dba741fbfff7fa1985a67fb"],["sourcecred","git","COMMIT","a462920043f7ded252ca746cf21c6a3dfe91325b"],["sourcecred","git","COMMIT","a501a7454bf19ee03003196bfec9560d48c978d2"],["sourcecred","git","COMMIT","a52d2478c6e23704685c324883891a25f261069f"],["sourcecred","git","COMMIT","a631821f95e1a3b679073cd25647784f863699ec"],["sourcecred","git","COMMIT","a6853a839b1101b077e3b80c3106da01be2807ea"],["sourcecred","git","COMMIT","a6e243fcbfe540b52551bbb50c542ad07ee92e39"],["sourcecred","git","COMMIT","a794a7d8a4034af56c031a5a4a85300ad488871e"],["sourcecred","git","COMMIT","a7c425d5f9edb1106b5934cafe4cbfc221a08e9c"],["sourcecred","git","COMMIT","a7ea71e19d10841f56da13b7bd52ec3b0b2a9469"],["sourcecred","git","COMMIT","a7eb7abbb97a3acb715b06da2a906cd6646b56bc"],["sourcecred","git","COMMIT","a802f7c669324c951f6554fcf391f886ba3150f8"],["sourcecred","git","COMMIT","a8419d96792a217c1bb9462dfa71c8c738a87a16"],["sourcecred","git","COMMIT","a86004ae7a81b6150ca9decebdd05ab7d4151214"],["sourcecred","git","COMMIT","a999d6bd35df198bab6252404325d7a944983410"],["sourcecred","git","COMMIT","aa9b13f64574bcf35312c9c6e828986ce75aff16"],["sourcecred","git","COMMIT","ab8fbf7d53b4152b4ec97c983405cc703df3a2bd"],["sourcecred","git","COMMIT","ace3d821833c0157e8e3f74c06951fe79cbb49e7"],["sourcecred","git","COMMIT","ace98dcfcfaeffae7c2fc2618af5281d06129330"],["sourcecred","git","COMMIT","ad563e12ffae5d7b53764f2709b2da47a17aa18c"],["sourcecred","git","COMMIT","ae656a1a99e9a8cc227c187154123571d9d16872"],["sourcecred","git","COMMIT","af3fc40b0b4f010f4236391bc245bab5c3fc5343"],["sourcecred","git","COMMIT","af6293708734a500d9aeb65ece80c20d28d973d3"],["sourcecred","git","COMMIT","af89e8d6be326c34865a925f1be4c67877064e30"],["sourcecred","git","COMMIT","b038f1ca9f9b6a5a54935c1a730d2e32f8220ce7"],["sourcecred","git","COMMIT","b06798edf2d6f86723961bdd7a387dda3eadcb00"],["sourcecred","git","COMMIT","b1e24185c567c4f9a60959559e6ff1ac7dbb6279"],["sourcecred","git","COMMIT","b28ca121bfda152ce8bacc325aa7a31f9a3edb1e"],["sourcecred","git","COMMIT","b2ec0646a7533828b003a7cc525ac0ec48c5d9a0"],["sourcecred","git","COMMIT","b34492813251b626e0ef02911d7a0fe28aaa2b0f"],["sourcecred","git","COMMIT","b3a4034f04332a6546a7d03ee781f10dbf9e32f3"],["sourcecred","git","COMMIT","b3bfd8136d25f8aacc2b9267a3700f36f366792e"],["sourcecred","git","COMMIT","b3e0e30623418aaf8af913aed3c78c36e5e7c742"],["sourcecred","git","COMMIT","b3f667c746d54fd1e7ef41d4e91186ff705cb01a"],["sourcecred","git","COMMIT","b3f72b5f3ed774a1891f2da1a3c1b60af9272d84"],["sourcecred","git","COMMIT","b4394213300ff4d72ebaca7c63cf919df306ead3"],["sourcecred","git","COMMIT","b48eec0b0acb2c42b9307e89f0c50fcd2b5e3fe9"],["sourcecred","git","COMMIT","b4e879fb7c6c79a659dacc784a3e2165411d7531"],["sourcecred","git","COMMIT","b55a7a196b8f85817e8548bf7b9afba1341131e2"],["sourcecred","git","COMMIT","b5820a49d275ad3e2441dc49ba0e9c932e7e01ed"],["sourcecred","git","COMMIT","b5ad5eea401b4f415b9da446187b893a7ceee1b5"],["sourcecred","git","COMMIT","b5df3c8cd85cbe43606f2052f00631dbfcca42d9"],["sourcecred","git","COMMIT","b5e53ece75d30f3d379adb3a07c8cf652434e773"],["sourcecred","git","COMMIT","b6388db5eb6a6fed56eba661db2b761ccddfd6fc"],["sourcecred","git","COMMIT","b670574bd2bcf1e0a71c36b9447b0d5ffe22b9aa"],["sourcecred","git","COMMIT","b6920f3b6646522b3fc0f93e6343506b485c158b"],["sourcecred","git","COMMIT","b6968e47899cfc22652e1f1dbb3b82ed98cc5232"],["sourcecred","git","COMMIT","b72e98f338ce136d49bbc775464fbe071df8c431"],["sourcecred","git","COMMIT","b8100f78f6295a440d2e6a9e95a9099504c53374"],["sourcecred","git","COMMIT","b8319d3616c7d5e6c2af8087ea63e9fab1a73c02"],["sourcecred","git","COMMIT","b842ed3eaf687513a0d90eafdfb0a9ec6fc5882e"],["sourcecred","git","COMMIT","b85906087b6422297975a655808e1ddf998fdc8c"],["sourcecred","git","COMMIT","b85c0b5ab98357c6dc3af69297e6a795851c89f4"],["sourcecred","git","COMMIT","b8c4dd20fe0e1d3e66edf0ecada1d03544106dbc"],["sourcecred","git","COMMIT","b8c9da4bcc0d1a50add9423473a6c162cdb99597"],["sourcecred","git","COMMIT","b9309e4d44289af8341f43103b7be195df5998b0"],["sourcecred","git","COMMIT","ba08f21f38fef25e65a006e4af00591f623cba88"],["sourcecred","git","COMMIT","ba693f5f116cf19d9a8bf1bf55a4ec8c6c1929b8"],["sourcecred","git","COMMIT","bab488e0531a826777829e70c4cf8f620202e881"],["sourcecred","git","COMMIT","bb4c80608db52c03a33b09edbf8fdbffc666c664"],["sourcecred","git","COMMIT","bb9844bd3a996039c00d44054f3450fcdc905d22"],["sourcecred","git","COMMIT","bbc54e4947190da8c37d767e004339b62fb34aac"],["sourcecred","git","COMMIT","bbca4d024098c749b7064b70c24c416061255c75"],["sourcecred","git","COMMIT","bc959b6cd0e80d193876a8edb8ff0f18142ba558"],["sourcecred","git","COMMIT","bcc0d1e18f56c0ee098c7a1316afa5252c5d3392"],["sourcecred","git","COMMIT","bd29ad9bca1ac4c5f098c091bce6ea0824776115"],["sourcecred","git","COMMIT","bdb4c8a38c86a4598b2da69391fc84939148d738"],["sourcecred","git","COMMIT","bdd1d95095fc99186754502c96c1ecbff216fb14"],["sourcecred","git","COMMIT","be503991de7a3225cfc2888ab833abfccdb1d309"],["sourcecred","git","COMMIT","be5b93ae59bf65b698f6ed6301d28218c8170e91"],["sourcecred","git","COMMIT","bfb1be19201eedf6f5556b76fb3cba77b694c535"],["sourcecred","git","COMMIT","bfd321a5c384dc7fab99062bcc3491705303a176"],["sourcecred","git","COMMIT","c00a25ed5500c60da5520e12c68db9dc1e003cd1"],["sourcecred","git","COMMIT","c04c305dff31a60a5ea91270b07b5b46c4b734c3"],["sourcecred","git","COMMIT","c0622fcf93369e37f99e4809cea077710b9677d9"],["sourcecred","git","COMMIT","c09ce59f6cb00f62380a8dca641fbd016f0d70a5"],["sourcecred","git","COMMIT","c0f32243cff400f34b36897db4e64d3ae2cec253"],["sourcecred","git","COMMIT","c191e57f44662bcb753ec4c08a25545b0d25e284"],["sourcecred","git","COMMIT","c264cfe1bc96c758079bffcd728f497d0d7c0117"],["sourcecred","git","COMMIT","c2bf0a118855a87f962a7bda788c73120c64940b"],["sourcecred","git","COMMIT","c34bc9c573eacc008ca98653ddd2661f823ff9b2"],["sourcecred","git","COMMIT","c37818dc54db302c1bb2bfe99312084cb6452263"],["sourcecred","git","COMMIT","c3d50445a0194dac7d52baaaa8aa3dbf2bd77173"],["sourcecred","git","COMMIT","c461bb40366be6124cc8e09af25741c5e65b1a6a"],["sourcecred","git","COMMIT","c46d5eb8179fd34a5732394f59d40cf6e3b5a4e3"],["sourcecred","git","COMMIT","c4ae2b95edd223a2b3269f4913c5a237e7557194"],["sourcecred","git","COMMIT","c4fa771d6e61d74c5f1e702dd238ebbb4b538be8"],["sourcecred","git","COMMIT","c515036f8ba1937cda94092e87b0a13545d86829"],["sourcecred","git","COMMIT","c519a0916f23866c99c0c76bad33dec09c4a1052"],["sourcecred","git","COMMIT","c5c9f44334709db3c28eb81f1ee928a3823ae003"],["sourcecred","git","COMMIT","c5eeac948569a06622740d0b9340c622ddb469d3"],["sourcecred","git","COMMIT","c61bc79183374e7e37a8456ff47f662a2bc21baf"],["sourcecred","git","COMMIT","c676d5b790126e2af137ca1c53c8048db443a88a"],["sourcecred","git","COMMIT","c7acef8a5664d3dd57059e8cc447c4f1dbe269db"],["sourcecred","git","COMMIT","c85244688604991c9ee1ae17a7bf62373a004fd1"],["sourcecred","git","COMMIT","c85e7ad86fb08653971ed365f4f316d4577178ed"],["sourcecred","git","COMMIT","c8d413c01f9aa1c9d272f96283367268ff49103f"],["sourcecred","git","COMMIT","ca41c379a44e4ccadb2b56c359ff2ece8aa5b5de"],["sourcecred","git","COMMIT","cba7b7417f1aa04b9137d0eb1d2b41cfc1b84f9b"],["sourcecred","git","COMMIT","cc4e4ff94b2fe78d8727963b42bc1c33bfd2e932"],["sourcecred","git","COMMIT","ccde11b4e85afd9685dc9f58165148861adbe59e"],["sourcecred","git","COMMIT","cda86c72f131bd0ba804c57d20be41d8f017cf3d"],["sourcecred","git","COMMIT","cee0c69332f9f5481d0ae7f1dcf1a8f92f346877"],["sourcecred","git","COMMIT","cf359f56a9e7d9e380a729fe64f0fd9e06853c21"],["sourcecred","git","COMMIT","cf41636379acd5fb9e27af62727fdf64a111d959"],["sourcecred","git","COMMIT","d01e1a1762cde70b0fb49e82ec5432de6d691fb3"],["sourcecred","git","COMMIT","d0cc40b28ca9129e733107d99730dfbcd9449273"],["sourcecred","git","COMMIT","d13028772ab946a65da8787a255248337864a5ba"],["sourcecred","git","COMMIT","d1a721f8eed2805dd0c85d8d9fef06032f04c056"],["sourcecred","git","COMMIT","d210d6f387860b4736193624125ec5e1b8f5c88a"],["sourcecred","git","COMMIT","d219bd2f62a0ec8ac06b82daf83499442e3cb173"],["sourcecred","git","COMMIT","d265f3f3a462805b6c27dc7507b15be038730a06"],["sourcecred","git","COMMIT","d383b8fd2e6815eb8a5099785a7ef5c4393e531e"],["sourcecred","git","COMMIT","d44bc4f2e2256f0ebe1af485b047d9567583ed85"],["sourcecred","git","COMMIT","d4555554d347b2385ac96a530f5628491c2c724c"],["sourcecred","git","COMMIT","d45cdeaaabc568712db4fd59c157084fc4819e19"],["sourcecred","git","COMMIT","d49ea3b27586437f262b74132224b280597e67bd"],["sourcecred","git","COMMIT","d56ad45d57b3ca44c6702f66dbcf349dd39a9116"],["sourcecred","git","COMMIT","d593b126af5ccde32fe610fbc399f9233c4fcdcf"],["sourcecred","git","COMMIT","d601ad079de95e29fe5bd99dd225621e193b09a8"],["sourcecred","git","COMMIT","d63265d1ec1ac6d5e5d661fc137bef3bc4752020"],["sourcecred","git","COMMIT","d6bcaf0ed530067e11be1321280fc83f3a289be2"],["sourcecred","git","COMMIT","d7e5763c37582067d930e53718273eef67997db7"],["sourcecred","git","COMMIT","d8034c1a997a6f3762eb64abefd3983ca5c17b27"],["sourcecred","git","COMMIT","d8288bb356551f8609c84a09886c19fb4fd673b4"],["sourcecred","git","COMMIT","d83736f0f5cc5c3fc415146a5ad80145b3a565a7"],["sourcecred","git","COMMIT","d8f4083966d599198ff8f988f55ced0e2b91ba98"],["sourcecred","git","COMMIT","d9900e922c90ce1d244761f1e2ad2fc4fb65f298"],["sourcecred","git","COMMIT","d9b40e071c2f216b8fb4cebce788ec1bf892ac7c"],["sourcecred","git","COMMIT","da69104f37bc78c1c71a34b9fafe537f875ca7dc"],["sourcecred","git","COMMIT","da9fa8ec523e360ace96eba7bc72bedadc69c8ac"],["sourcecred","git","COMMIT","db97114fd0dbcd580c0a88991f4b6991d0bef4e5"],["sourcecred","git","COMMIT","dbb4bbb4a48bf36b3890cb23012337c0bfbfc6c7"],["sourcecred","git","COMMIT","dc008266ba36121c746ddb6b60121b6e084d3065"],["sourcecred","git","COMMIT","dcba3eb54f781973155ef382ed674685adb9491f"],["sourcecred","git","COMMIT","dccb0bae8344da0fa4bc886fd642bd819e5ab204"],["sourcecred","git","COMMIT","dd687457b7a8178a907116c7880a1bb498bb4131"],["sourcecred","git","COMMIT","ddad2121732e1f0646c5ab6d3d8fc51c431f94b8"],["sourcecred","git","COMMIT","de56e092581eb21affd70f681de349d461487d47"],["sourcecred","git","COMMIT","def7f01015008f1aefda848d93661555c086231a"],["sourcecred","git","COMMIT","defb8c56dbc8ed6a58674a7c569010ddc17fea0b"],["sourcecred","git","COMMIT","df39053f37bf93823cd4364b819ca1289e4481b1"],["sourcecred","git","COMMIT","df4aca3876a771513b7e5d9a0c28517746508961"],["sourcecred","git","COMMIT","df9f7423f0e18a57835324b459fe243d3f3e55ab"],["sourcecred","git","COMMIT","e00d2fbc8959a1a8dd6907627c0f13731dd5b7e4"],["sourcecred","git","COMMIT","e0cd35442d7cf4999adc586ee0c24e3fc3bf2e1f"],["sourcecred","git","COMMIT","e11bcaa214504bd338f41f0684c387377e91d223"],["sourcecred","git","COMMIT","e27f889ed7e899c482d528e5bafb0a950047db35"],["sourcecred","git","COMMIT","e2dddf8e3303043dae6bf8efc44777965d5fde9a"],["sourcecred","git","COMMIT","e3707010bd6cff203cbe2450f48d2ee7bbc5d155"],["sourcecred","git","COMMIT","e41eb256be1cff6f8173bf1b4ab1e08d82680377"],["sourcecred","git","COMMIT","e4db1e5c01390590a53e47424b6fc6389fbed459"],["sourcecred","git","COMMIT","e5810c7e956182f58bacafd24c51f8be7e6af31f"],["sourcecred","git","COMMIT","e5c721ba787d25a591d470c5ba11d9bd41e1797f"],["sourcecred","git","COMMIT","e63ec70c3b75de539e86faf77c9e44f83753cb1f"],["sourcecred","git","COMMIT","e7d262bceecfcab743754d6d3a41fea1d74be955"],["sourcecred","git","COMMIT","e86fcfd2e1ddf643bc06ef0a08d439899b509c8a"],["sourcecred","git","COMMIT","e8c036745f6c3d82f34e46e6f40ce520f53be1ef"],["sourcecred","git","COMMIT","e8d2566e023a7cefb04c5157b0f85568fcb9a3c5"],["sourcecred","git","COMMIT","e97f15b28e12292f7df8de6515a27b63f989acfb"],["sourcecred","git","COMMIT","e9a68209df1f07b4f9f28319e98dcade12ebde80"],["sourcecred","git","COMMIT","ea5b35e7658fc8550736aa7ef2e3e4a37c8395a2"],["sourcecred","git","COMMIT","ebfca230987726fb6d0c74cdba1e7346b5d08345"],["sourcecred","git","COMMIT","ec5436b68ec36cea41f923ae2d95841b7dbe678a"],["sourcecred","git","COMMIT","eca1c8e4fb9897f86e7192f1741d00509707a42d"],["sourcecred","git","COMMIT","ecc49af4d29ddb86bece5cf38e3295d03d80efc8"],["sourcecred","git","COMMIT","ed75cb58e840a9712a7fe5678e0234538101824c"],["sourcecred","git","COMMIT","ed85892fe323a252ac0d44ca5ce619fe73cc8a5d"],["sourcecred","git","COMMIT","ee30ad273845bf58d551566ffe5c4e87e98c07c2"],["sourcecred","git","COMMIT","ee805c230d58b420f39bedd6d7dc5c10c8f14856"],["sourcecred","git","COMMIT","ee80ee18c4c10447c5e3d180c7cb87d177cf6bab"],["sourcecred","git","COMMIT","ee958e4ea4a9d7db08a45e558912449245e1f619"],["sourcecred","git","COMMIT","ef1a4e1d3bf70f9daccebdf3028ea8f476c26899"],["sourcecred","git","COMMIT","efe2a210242adcd52a288d57f373b09187b88c17"],["sourcecred","git","COMMIT","f024b3aa2227eccef235a3b4d5a76e7f04cc78fc"],["sourcecred","git","COMMIT","f13bf3f7a6dfeebd2725261a11357612547e0783"],["sourcecred","git","COMMIT","f1650581495bd5ba951e6aca3adc65aa4271e7ec"],["sourcecred","git","COMMIT","f1b1a348514a8d88750c2774a379a00b85ea0810"],["sourcecred","git","COMMIT","f1ec698041e4fdef5931f7928a751a8a45433b9f"],["sourcecred","git","COMMIT","f3484bc0a5f204b3b6cd3159a0e3c274c2056154"],["sourcecred","git","COMMIT","f370b16891f4dc805ea30ac6b5a3042c8224bb45"],["sourcecred","git","COMMIT","f3d076f67797f6c3491e046a5dcdce0372890de5"],["sourcecred","git","COMMIT","f4379c34b30691a61e67438d4da4192f7cb18710"],["sourcecred","git","COMMIT","f4597eaa6b0681ebfb7e32991fc295f52427d199"],["sourcecred","git","COMMIT","f4b57f657a24f0feb175f404718f49ffc506edc0"],["sourcecred","git","COMMIT","f5b6b5b9b8ab493342591799369bab4473ad4bd5"],["sourcecred","git","COMMIT","f6a88b69728fa2cbc9304a9d3a6193afa9aca17c"],["sourcecred","git","COMMIT","f74897580057b86bf1ec803694b2494dc5099ba4"],["sourcecred","git","COMMIT","f78660ce09132d6127ab960a0fdb9f19f2b76893"],["sourcecred","git","COMMIT","f79294b14e900ca927b3e9e5cf51972814cd2c50"],["sourcecred","git","COMMIT","f7ecdc6617ce77574676654a84f58313ad9f84a8"],["sourcecred","git","COMMIT","f819ec520e754c4adb46d13d0126fa48f03b0dac"],["sourcecred","git","COMMIT","f8cc3c0cfe61b256ef079488a26d06b59f6f8ca0"],["sourcecred","git","COMMIT","f96bc3f66106ed4341d674b5a37a1fce8035c922"],["sourcecred","git","COMMIT","f9f862051f1b8310f274b4e8e8c20604a75bda59"],["sourcecred","git","COMMIT","fb4fcae94286c8bcdda97e172bc867ab4e08b76c"],["sourcecred","git","COMMIT","fcacf68e748f6ee1883db51392267fc8537db08b"],["sourcecred","git","COMMIT","fce33399d0696995385d8895995cb0fdaad56615"],["sourcecred","git","COMMIT","fd8dac99c58c603001fa56c8d2dd2553db8fa6c0"],["sourcecred","git","COMMIT","fdaff82509a99dc7adb3d1289b2ad02a339fe19e"],["sourcecred","git","COMMIT","fdf6857a29d796d7cfdea7f7d45a67a9c05d50d2"],["sourcecred","git","COMMIT","fe33dab74a05f43d1e24044dc4413ff0e72aad50"],["sourcecred","git","COMMIT","fe865a679a723590923af6394366b58fb01c8f50"],["sourcecred","git","COMMIT","ff708c3b7352a9b659df8120351e6f1eab566a2a"],["sourcecred","git","COMMIT","ffec223be5fffa16d0ce2effb0aeed1b959a2532"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],["sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],["sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],["sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],["sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjA3ZTBlNWYwMGUxOGUwMGExMjg5MmI0N2JkM2Y1Yjg3NDE4Mzc3ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyNDVhNDAwMmEzNWMyYWRjY2ZlZDFmNjhhNjc1YzMwYmE4NzFiYTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjBlNDY4ODQzMTkxYWQzYTI0ZmY1YjgwM2IyZTM4OGExMmU4OGEyODk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1YTgxMjdiYzU0MDJjNzIyNGJjNTkyZjg5MGE1YmQ3Zjc5M2M2YTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjExZmNkMDlhMGNkZTA4YWYwOGI1YzVjOTUxZjU0YzE1MGNmNDdlYTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyMjJlNDliNDI2OWYxNWIyYzcxY2ZlNGI2MmIxMzMzYWJlZWE1ODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyY2YwZjE2ZDQwNmYxNGMyNTk3YWJjMTMwYzRkMmJmYTk5MjdmMzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyZGRkNGUzNTYwN2MwMTg0Yjg5OGM4OThlMjZlNDVjNjAxNzY0MmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzNjM0NDE0MzM3ZTczMGZiY2I0MDNlMjY1N2E4MDA3MzQ3ZGRkOGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzZmM1MGQyMmUyMzUzY2YyYmIzODk0OGNhZTRmYjVmYjU5MWNlNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFhNzkyOTQ2MmZjMzU0NDg0MDhmMGQ4NTRhNmM4Yzg5OGMyZGI5NGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFjYWMxNWVjYWU1ZTYzNmZkNWQwNDlmYzU5OTNjY2QxMTMxMjZlNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFkYzRhMmMyMzUyNTA0M2E3YjZlMzJhNzk4MzdjYjZhNWE2MmZkOTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFlZWQzOGM0Y2ViZDYzYWI2ZmM5NTM3NTY0YTUzMDRhODcwY2FhMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFmMzUwZWFkMjJjYjUwMzkzMmVjMzZiOWQyMWI3MzVlYjk3ZWIyNTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI1YzE2YmI4NTgwMTI3OTE5NjAxOGI0NGVjMGRiMDgzNGZhZGM0YTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI3YjJiZjNkN2RhODNlMDQyOTVhYTFjMjI5N2U1MGNlODE1N2Y0MzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI4YjBlM2YyZDhmZDQyNTY5ZWI4MDNkMTA0MzVhYThjMGVkZjI4ZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJhMTIwNGI0NGY0NGQ2ZDkzY2Y5NTJlMTgwNGFlZjI1ZmZiZGQ3OGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJkNDQxOTFhOTk2OTUxY2NiZWQwMDA5MjgwODk5NjE0ZDYzMTc0Yzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmNDJhMmEzOTE2ZmU2ZWRlOTdmMWZhYzlhZGMxODk3ZmNiYWEyYmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmYWQ5YWFiNjg5NzIwMWU2YmMzNTNiOTc0NmMwM2QxZTcyOGQ0MzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM0NzIzOTYxMTk5NTY1OTM3NDkzODM0MDcxNjY1Yjg3MWE2MzJkNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM1YmYwODI5YzA2OGFhMjBkZTUxNDY2ZWExMThmNzU0NzcwN2RlMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2NDA2OGVjOGRiODZiMzc4ZDYzMGY1OTFkYTNhMDJkZTg3MDg3OTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MWIzMmJmZGI1YWUzN2QyY2U0MmQzMjMxOWZiYWRkZTcyNjYzZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MmU2MDFkMzE3OTUwNmRmZTdlYzBhZDIwY2Q1ZjY3OTY5NmU2NmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YjBhOTAyYzFjMTc1MTJhNTM2MzgwNTAzYTUwNmZjM2NhNjE1YmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YzZkYWFhNWZjYTYzMDViOTA4Y2RkMjg4MTExMDdlYmE2YmNiZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwMDE0YzExODQxYzlhNjA1Y2M5NGQ1MTdlY2U2Yjg2N2FmZDhjZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwNzU4ZDA0YWE0ZGE5N2ZjMGFjZWQxZmEyMmNiZGVlNGE4MmM3OTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwOWE4OTU4NmRhNWUyZDQ0YjQ4YTYwN2M5MzM0YWVmNmY2ZGIzZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxMWJmMjZhYTUyNjhhMDY3YjBiZmM4NzA4YTkyMmQyZmQzZDBhODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxN2ZmYTE0NzFhMDE3OTAwN2I4N2Y5M2FhYzIyMjM2NjY0NDNkNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNDg3MWMwOWI2NzQ5OGUzMTU3NWI4YWFhOWMwOTQ0M2QxNDJhMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiOGU0ZjU0ODQ1Mzg4ODUxMjkzYjI2MDUzZjRkZjY1YjRkYzk4ZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiYzk5MzQ4MzRiOGE2NTI5MTQzOWNiYmEyZGFmMDYxNDQ4ZTMwZmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNlNWUxNDQ1N2ZhMTQzNDI1ZDI2NGE0ZmE5NDE1OTFkMTk3MzBjZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNmNDdmMDc3MjNiOTdmMDMxMWYzMmI3OGRhOTkzNThkMmM2YWZmYjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Y2YwZmJiYTE4YmYzOTJhNDQ5NjJmYWVkMWUxMzAwZWQ2ZmE0NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Yzg0NDQ3NWM1ZTJiZWI1YWNkZWZjN2U0Y2Q1NGU5MGQyZDg0ZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ2MzllYzhkYmExMmU4YzdkM2IwYmY1ODliOGM4YTA5YzUyMmFlNDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ4ZTViNDQ2N2M2MTA3MDQwYzEwN2Q1NWJjMmZiZTA3YTU3ZWEzYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxOWQzOWQ4N2ViMzE5NjVhOGY1Nzc1MDc1Y2I4MGJlNmE1N2FiZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQzMjA0MmY2Zjk2NWJiMTEzYWQ1MDk1MGNmZGJiODJjNDRmMGRjNTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRhOTA3MzQ4MzJhZTRhZDMyOGZjMDYyNzEyZTJkZWNhODhkN2RjYzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRiNGM5ZWE5NzA1NDY1ZDM5ZjMzYjM5ZWEzOTgxOWM5Yzc3YWE3OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU1NGM5NjQzOGZkYmVlMjAzMWI4YjVhYzE2YWEyZDZkYjZhN2Y0MGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU2MTcyYjYwODc0MDBmYTgxYzEzZjM5ZjM3YjIzZWMxMWRlM2M5YjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3ODU0NGQwNTU3NjE0YzAwNzgwMDg5ZmE5ZjgzNDM5NTBmOTc3ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwOWQ4YzAzYjFhNjcxMjlhM2U5ODA3M2RkMjRmOTM3MjNjZGZlNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUxMzA4NjIxZWMyODQzMzUwODUyZmQzMWY4YzBhYTA4ZDZkNmE4MDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVhZmI0ZTA4MTcwYzFiZDJlOWY1ZmI0ZGQ0MmM2ZWY1ZTJkMjM4Nzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjViODVhNzQwNTQ4OWY3MjBlZDBiOWNiNTE1MGMyNjE5ZDQ1YzllOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjNjIxZWU0YzY0NDcxM2EyNjI3YWZiZmVkNzQ1NDgyZmU1NTI1ZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjOGU2OTVhZDM0MGU2NWU4NTg2MmRjODIwMmQxN2U3M2Q5NWJjM2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1NTI0MDk3ZWQ1ZGUzYTgxNWU5ODliZDQyMGUzODE3N2ZlNzBiY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1ZDJjYTM0M2M1MTAyMDQ3ODA5NGJhODdiNWRiNGFmNjQ2NDc0MWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY3ZDQ2MjI5NDg5MzA5MDM1Yjk2ODM5MWU2ZDE0NjExZWJkNWMzZmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY5ZDFmYjc5Yjk2ODBmN2VjNWU4NTU0ZjJhOGMwZjgxZDc0ZDlhOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjYzNmVjNmExNjA2NGM4YzMzZWI0NzYzMzc1ZDUzYWM1ZDhiZDFhMTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZhOGJmY2EwYzkzNmYzMDRjYzlhMmEzMzk5Njc2YmU0NmFlYTk5NjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZiOTY5OThlN2MyZjhjZTUyZGMwOWViYzllYTUyNGQwN2RlYmUzOGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZkNTFlZTgzNmUxMGU5ZDdiMzgwMDZmNWU0OTY2NTVhZTE4YWQzNjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc4NjAxMzc2NTIyYzMyOWMwOTQwNzU0MDIwZmY0NjU0ZmZlOTM3Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc5MzFjZjIwYjUxNDZiY2E2OGU1MWQyNmNkZWJhZGU5YTFkM2E2NjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjcxZTA4NDY0YTY1NGIzN2IwNWZlNTM0OTY0OWEwM2Y0NTc5MzNmYTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiNmQ2MTY4N2U1N2QxNWE0NWQxOTViMWVkYjU2NzQ1MWEzMGRiMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkMWY2ZTJkMTNhYjQ2NzcxOWYyODc4MDJiMTZlNzk5ZGVlYjVlMjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkYzQ1MTRjZDQxNWNjOTI2ODI3ZmUwMmNiMjg5MWI4ZDZiODBlNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdmZjc3ODI0ODliNzg5NDE0OWNjNWYyMTFkOWRkYWZjZjg0OTE4ZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg1YjZlOGNjYTJkNmJjNTcwOTQ0OTYwNWM4YWM2NDVmZTc0Zjc4ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg2MTllZTI0NTJlN2JmMTA5MTY5MDE3YWNjOTY4YmJhM2U2ZTEyOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YTE1YjU3NzJkMWRjMjE3MzcxODFkN2RkYTI2Njk1YTBkZmVjY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YjMzN2JlZjI5NmRmMTBhOTRjM2IzOGNlMWUyZWY0Mzk2ODg2ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxN2NmODk0MGNiODhiYTc5MGM2MDIxY2U1NGJjYjAxOGFhMGNlYjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxYTY3ZjQ4MTIwNDQ5Mjk0ZDNhYjk0Y2M3Njc3NTVlMGJmMzc4NGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgyNzVkMWI1ZjNhNzc0MjY0ZDU4MzNjMjNkODk1ODM0Mjk0MDA5MmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkOTYwZjA0MTVlOGNlOGE0NWQ3MDA1YzRlZTM5OWRlNjcyMTQ0ZDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkYTMyYmIyNDM2MjE5ZTNhNTU2MzFlNDI2YTcxZDNkNDVkMjdjMzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk0ZTUxZDlhODNjZDY3YjRhZDgyYzY1MjkyMTJlNzJhYWM4NGFmZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk1ZDU4ODRiMTJhNWE1ZjFkMTg1NTIyNzdlMzc1OTdmYjYwNDgyOTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk2MjBmYjhiMDM4NjE2MGUzNjRlMzhkNjNhZDNmZWRlNGExODJjZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk3OGYwNTJiNjNhYTIwOWVkODEwN2RhZDcxYzU5YTQ0NjQzZTc0YmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk4Zjc2YzRmYTkzNGEzZTA4ZGM0YWJiOGMxOTY5N2M3ZWQxZGE4MWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjkzNmNkMjJmZTE1OWJmZDdmOGJlZDUzOTc4M2Y1MmM3NjhmMjBhOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhNWI0ODllMWJiY2MzMDZjZTRjNjM2MmFhNWFhZGZmNjBlNmEyN2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhODY2NDI0Zjg0YjQ2OTc4M2RmZTU1OWE1MTBmZmM5M2UwMGQ2NGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhYTBlY2Q2ZjUzN2MwZjNkNWY2ZjIwMGM3YzU0NDhkZGMyOGM5ZGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkMGNhY2YyOWVlNWY2NjY4NDI2YzBkZDljY2ExMmFkN2FmOTA2YWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkODU2MGY3YTE3MGNjMmMwOTM3YmE3OTgwZGJjYjQ2NmFkMzE0MGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjllZTZkMWIzYjBkN2IwNmMzYWJlYjdiNDk2ZTgzMDY4M2M1NGY2ZDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE2ODUzYTgzOWIxMTAxYjA3N2UzYjgwYzMxMDZkYTAxYmUyODA3ZWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE5OTlkNmJkMzVkZjE5OGJhYjYyNTI0MDQzMjVkN2E5NDQ5ODM0MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEwZmI5YjgyMmJhYWI5ZTBmY2U4NDMzYmUzZGU3ZDQyM2UxYjRkZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyNTQ3ZWI3ZDE4MzVlMDUwYTg5NzE3MmI1NjNjY2I2OWI3Njk3MTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyZmQ3ZTA3Njc5NWM2MmEwNzUwMWQ1ZmI3MWMwMzk5OWNjNGIxNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEzN2E0ODI1NmQ5OWE2M2ZjZjBhNjc4ZWJiYjM0Y2NhMGZkOTVmMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFlNjU2YTFhOTllOWE4Y2MyMjdjMTg3MTU0MTIzNTcxZDlkMTY4NzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI0Mzk0MjEzMzAwZmY0ZDcyZWJhY2E3YzYzY2Y5MTlkZjMwNmVhZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1YWQ1ZWVhNDAxYjRmNDE1YjlkYTQ0NjE4N2I4OTNhN2NlZWUxYjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1ZGYzYzhjZDg1Y2JlNDM2MDZmMjA1MmYwMDYzMWRiZmNjYTQyZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2Mzg4ZGI1ZWI2YTZmZWQ1NmViYTY2MWRiMmI3NjFjY2RkZmQ2ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2NzA1NzRiZDJiY2YxZTBhNzFjMzZiOTQ0N2IwZDVmZmUyMmI5YWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4MzE5ZDM2MTZjN2Q1ZTZjMmFmODA4N2VhNjNlOWZhYjFhNzNjMDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NDJlZDNlYWY2ODc1MTNhMGQ5MGVhZmRmYjBhOWVjNmZjNTg4MmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NWMwYjVhYjk4MzU3YzZkYzNhZjY5Mjk3ZTZhNzk1ODUxYzg5ZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI5MzA5ZTRkNDQyODlhZjgzNDFmNDMxMDNiN2JlMTk1ZGY1OTk4YjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIwMzhmMWNhOWY5YjZhNWE1NDkzNWMxYTczMGQyZTMyZjgyMjBjZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIxZTI0MTg1YzU2N2M0ZjlhNjA5NTk1NTllNmZmMWFjN2RiYjYyNzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzZjY2N2M3NDZkNTRmZDFlN2VmNDFkNGU5MTE4NmZmNzA1Y2IwMWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhMDhmMjFmMzhmZWYyNWU2NWEwMDZlNGFmMDA1OTFmNjIzY2JhODg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhNjkzZjVmMTE2Y2YxOWQ5YThiZjFiZjU1YTRlYzhjNmMxOTI5Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiYzU0ZTQ5NDcxOTBkYThjMzdkNzY3ZTAwNDMzOWI2MmZiMzRhYWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkZDFkOTUwOTVmYzk5MTg2NzU0NTAyYzk2YzFlY2JmZjIxNmZiMTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJmZDMyMWE1YzM4NGRjN2ZhYjk5MDYyYmNjMzQ5MTcwNTMwM2ExNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0NjFiYjQwMzY2YmU2MTI0Y2M4ZTA5YWYyNTc0MWM1ZTY1YjFhNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0YWUyYjk1ZWRkMjIzYTJiMzI2OWY0OTEzYzVhMjM3ZTc1NTcxOTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1MTlhMDkxNmYyMzg2NmM5OWMwYzc2YmFkMzNkZWMwOWM0YTEwNTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1ZWVhYzk0ODU2OWEwNjYyMjc0MGQwYjkzNDBjNjIyZGRiNDY5ZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM2MWJjNzkxODMzNzRlN2UzN2E4NDU2ZmY0N2Y2NjJhMmJjMjFiYWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM3YWNlZjhhNTY2NGQzZGQ1NzA1OWU4Y2M0NDdjNGYxZGJlMjY5ZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMzNzgxOGRjNTRkYjMwMmMxYmIyYmZlOTkzMTIwODRjYjY0NTIyNjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNjNGU0ZmY5NGIyZmU3OGQ4NzI3OTYzYjQyYmMxYzMzYmZkMmU5MzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmMzU5ZjU2YTllN2Q5ZTM4MGE3MjlmZTY0ZjBmZDllMDY4NTNjMjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmNDE2MzYzNzlhY2Q1ZmI5ZTI3YWY2MjcyN2ZkZjY0YTExMWQ5NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ0NTU1NTU0ZDM0N2IyMzg1YWM5NmE1MzBmNTYyODQ5MWMyYzcyNGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ1OTNiMTI2YWY1Y2NkZTMyZmU2MTBmYmMzOTlmOTIzM2M0ZmNkY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ3ZTU3NjNjMzc1ODIwNjdkOTMwZTUzNzE4MjczZWVmNjc5OTdkYjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ4MDM0YzFhOTk3YTZmMzc2MmViNjRhYmVmZDM5ODNjYTVjMTdiMjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ5YjQwZTA3MWMyZjIxNmI4ZmI0Y2ViY2U3ODhlYzFiZjg5MmFjN2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQyMTBkNmYzODc4NjBiNDczNjE5MzYyNDEyNWVjNWUxYjhmNWM4OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmMzkwNTNmMzdiZjkzODIzY2Q0MzY0YjgxOWNhMTI4OWU0NDgxYjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmOWY3NDIzZjBlMThhNTc4MzUzMjRiNDU5ZmUyNDNkM2YzZTU1YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU2M2VjNzBjM2I3NWRlNTM5ZTg2ZmFmNzdjOWU0NGY4Mzc1M2NiMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwMGQyZmJjODk1OWExYThkZDY5MDc2MjdjMGYxMzczMWRkNWI3ZTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmViZmNhMjMwOTg3NzI2ZmI2ZDBjNzRjZGJhMWU3MzQ2YjVkMDgzNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjNTQzNmI2OGVjMzZjZWE0MWY5MjNhZTJkOTU4NDFiN2RiZTY3OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjYTFjOGU0ZmI5ODk3Zjg2ZTcxOTJmMTc0MWQwMDUwOTcwN2E0MmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVmMWE0ZTFkM2JmNzBmOWRhY2NlYmRmMzAyOGVhOGY0NzZjMjY4OTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY2YTg4YjY5NzI4ZmEyY2JjOTMwNGE5ZDNhNjE5M2FmYTlhY2ExN2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ODY2MGNlMDkxMzJkNjEyN2FiOTYwYTBmZGI5ZjE5ZjJiNzY4OTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3OTI5NGIxNGU5MDBjYTkyN2IzZTllNWNmNTE5NzI4MTRjZDJjNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ZWNkYzY2MTdjZTc3NTc0Njc2NjU0YTg0ZjU4MzEzYWQ5Zjg0YTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY4MTllYzUyMGU3NTRjNGFkYjQ2ZDEzZDAxMjZmYTQ4ZjAzYjBkYWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY5NmJjM2Y2NjEwNmVkNDM0MWQ2NzRiNWEzN2ExZmNlODAzNWM5MjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYxYjFhMzQ4NTE0YThkODg3NTBjMjc3NGEzNzlhMDBiODVlYTA4MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYzZDA3NmY2Nzc5N2Y2YzM0OTFlMDQ2YTVkY2RjZTAzNzI4OTBkZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmZlMzNkYWI3NGEwNWY0M2QxZTI0MDQ0ZGM0NDEzZmYwZTcyYWFkNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAyZjRkMzYyM2FlNGU4OWZhNjIzMjQ3N2Q5N2ZlMzJiMjdhYWU3YzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzNjA0YTdkOGY5YTZmNDg4Zjc5OTAzMDllNzAwNjZhMTI2MDQ4M2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzODhmYjAyMTlhNzQ2MGU2NzI2YjM0ODM1YzY3MDk4NmJlNTQwNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBiMzUxNDEyY2ZhOTJjOGVkYWJlYTE0NDlkYTE2YTdhMjEyOGM4MWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBlOWRiZDg0MDZiMjU2ZjZiNWU1NTNkNjc2OTY4M2E1NTkwOWFiODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE2MzA5ZGE2Yzc4NmVmZTlkYzFmNzQ1YzYxYWQ0ZjJjMmFkNjFkNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE5MWU3M2U0MjlhYjE5M2U1OTE4OWY0NGIzNjNkNjk2MTNlZTAzMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjExYTQ1ZWIxODhhNzU2ZTMxZjJlY2UwYWZjZjEwYWZiNWUzMDExMmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI3NWQxNjNlZmRkODEyY2RjZDZhZTJmNWE4YWZmMWJhYjNiZWQwZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI5ZDlhOGVmMGQ3MzhkOGIxYmRhZTg3M2M4OTJhZjQxODU4Y2RhMGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJkMjkwYjIyODhhMTRkNDk0ZjBmYzE4YmZhYzg4MmVmNmM2MTdlNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM2ZWQ5NWRkZjgzNDliYTNkNTU3YmZiYmVmMDY2YjI1NTliNDMyYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNTI5MjM5NDA5NjllMDU5NGM5NjkzZDI3ZTgwYmY4MWU0OWJkZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNzE2Y2EzOWEzMDVlNWQ4YTliMmE1YWE0NjYwMzk0NjZkMDVhMzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNlMzc2MDAwN2M5ZDBhOTQ3MWY1ZjBkNDI5YWM0YzMwYjFmYjU0ZjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzcyMzUzZjhkOTUwMjI2ZDkwOWIxMjc3OGNiZWQ0ZGYzZWQ4NjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZjI1ZWE0ZWI2NDY0MjdjMDZlNThiN2U0Y2UyYzRjZDM4NWMzMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQwMDM2YTM4NmIwN2M0MWI4OWU1OTQ3MzZkYWRiNjEzNGNmMTgyZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhNjIzZmJjMzczNWM5YTMyZDEwMTk5ODgwMjE0Y2M3OWNhYTQwMDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRlYzZiZGM2YTEyMGUxMjMwNTJlYmY2OTBkZGY2ZjMyYjljMzU3MjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU1NGE4MmJjMDVjYjcxM2U5MmU4YjM1MjNiNTIxMDc4ZGFmODI5ZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU2ZTE0NTBhYmQyOTQ1N2QzYWVmYmRhZWYzZTM4NTYyNzI3Yjc2Mjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUwMjNlZWU3MWM5YzNmMmYxNmRlMWIyMmU5ZjM3ZmRhMjZjMmYwMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzYjZmMWI5ODBiNzk3ZjkyZDU5ZmM0OTEyYjJmZTZlOTk5Zjc3NGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzZDliNjI4NjJkMGU4ZWY1OTdkYmZmY2JkMGRhOGJjZDEyMTAwY2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVhZTZkYjc0ZWM2MzgyMjJjYjYwOTU3YzMxMDVlMTVkZTdmODQ0NTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkZDA1ZTM2MDVlOTk0MGY2NWYyMDU5ZThjNDI4NjA3N2E2NDM5ZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmNjg5MDEwZjZlMGE0Mzg1MTNiN2U0NGVmMzdhZTEyZDU5ZGRmOTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmYzk5ZjA5MjZhMzgxNDBiYzQxYWI1MzIyZTI4ZTQzZjViNTA5Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNDRkYTc3ZDc3Y2Q1ZjBiZjc4MmZkNDdmYWY3ODEzY2I5YTAwZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNGJhODc2MWNkZGRjODRiZmE2NjQ4NWZlMzY3NDk1ZTVjOGE2NWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYyZDQ3MjQyMzMyZjRlMWQ4NmY3ZDdhZTQ2MGY2ZGM5OTgzNDRhYTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmMWEzOTY4ZGFhMWUzZDJiZDYwN2Y4MWE1OTlhYzVlYmY3M2Y3MTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmYjU4ZDJiY2IxMGVmYTFhMTgzNmIwYmYzMzU3YWU2YmMzMzk1NWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjcxM2FjYmQ0NTkzYTdhMTBiMDU0NGFhYWI3ZmM0YWMwNWE2NmY5YWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczNTA1YzM0YTFiNDZhM2RmY2FjYTRkOWMzYWExMTZmZGY1MWUwZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczZGJmZWEwMGQyNjlmZjk1M2VlNTBjMDM0ZjFjNjkzOTc0M2E1ZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhOTkxOTYzYTVjOGZjOGRiYTRhYjZhMGMxZTM5NDIxZWVlYzQ1ZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlYTU5MTZhZDZmOWRlOTg0MWYyNzc5MDE1MDZhYjcyYTM5YmYxNTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhhNTg0ZTRiNGY5YzhhMTExMWJmMzgzZDNhN2E3MmNhM2Y4ZWU1Yjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlMTNmMzlkMTM3MmI0MjJhOTE0ODU3ZjMyNGVlNjBhYmQyYzc5NWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlODBiOGZmNWJiYzgxMjNlNTdhYzcyOGZjOWVmY2QxY2QyZDAzOGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk4MmE4OWRmMmI1MjgyNTc4YTc1OTNlZWE0OTUxMWFlODAzZWUxMGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzNTZmZTM3YjNlZTIyNTZkNTI5YTYyNWE0MmQ4OTA5NjI4NzAwOTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFjZTNkODIxODMzYzAxNTdlOGUzZjc0YzA2OTUxZmU3OWNiYjQ5ZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFmM2ZjNDBiMGI0ZjAxMGY0MjM2MzkxYmMyNDViYWI1YzNmYzUzNDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1NWE3YTE5NmI4Zjg1ODE3ZTg1NDhiZjdiOWFmYmExMzQxMTMxZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyZWMwNjQ2YTc1MzM4MjhiMDAzYTdjYzUyNWFjMGVjNDhjNWQ5YTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJhYjQ4OGUwNTMxYTgyNjc3NzgyOWU3MGM0Y2Y4ZjYyMDIwMmU4ODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJiNGM4MDYwOGRiNTJjMDNhMzNiMDllZGJmOGZkYmZmYzY2NmM2NjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJjYzBkMWUxOGY1NmMwZWUwOThjN2ExMzE2YWZhNTI1MmM1ZDMzOTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMxOTFlNTdmNDQ2NjJiY2I3NTNlYzRjMDhhMjU1NDViMGQyNWUyODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMyNjRjZmUxYmM5NmM3NTgwNzliZmZjZDcyOGY0OTdkMGQ3YzAxMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMzNGJjOWM1NzNlYWNjMDA4Y2E5ODY1M2RkZDI2NjFmODIzZmY5YjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRiYjRiYmI0YTQ4YmYzNmIzODkwY2IyMzAxMjMzN2MwYmZiZmM2Yzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU0ZGIxZTVjMDEzOTA1OTBhNTNlNDc0MjRiNmZjNjM4OWZiZWQ0NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4ZDI1NjZlMDIzYTdjZWZiMDRjNTE1N2IwZjg1NTY4ZmNiOWEzYzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlODA1YzIzMGQ1OGI0MjBmMzliZWRkNmQ3ZGM1YzEwYzhmMTQ4NTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVmZTJhMjEwMjQyYWRjZDUyYTI4OGQ1N2YzNzNiMDkxODdiODhjMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0NTk3ZWFhNmIwNjgxZWJmYjdlMzI5OTFmYzI5NWY1MjQyN2QxOTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY1YjZiNWI5YjhhYjQ5MzM0MjU5MTc5OTM2OWJhYjQ0NzNhZDRiZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxNjUwNTgxNDk1YmQ1YmE5NTFlNmFjYTNhZGM2NWFhNDI3MWU3ZWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZjZTMzMzk5ZDA2OTY5OTUzODVkODg5NTk5NWNiMGZkYWFkNTY2MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmNzA4YzNiNzM1MmE5YjY1OWRmODEyMDM1MWU2ZjFlYWI1NjZhMmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],["sourcecred","github","ISSUE","aracred","AraCred","12"],["sourcecred","github","ISSUE","aracred","AraCred","14"],["sourcecred","github","ISSUE","aracred","AraCred","15"],["sourcecred","github","ISSUE","aracred","AraCred","16"],["sourcecred","github","ISSUE","aracred","AraCred","17"],["sourcecred","github","ISSUE","aracred","AraCred","18"],["sourcecred","github","ISSUE","aracred","AraCred","19"],["sourcecred","github","ISSUE","aracred","AraCred","2"],["sourcecred","github","ISSUE","aracred","AraCred","22"],["sourcecred","github","ISSUE","aracred","AraCred","23"],["sourcecred","github","ISSUE","aracred","AraCred","24"],["sourcecred","github","ISSUE","aracred","AraCred","25"],["sourcecred","github","ISSUE","aracred","AraCred","26"],["sourcecred","github","ISSUE","aracred","AraCred","3"],["sourcecred","github","ISSUE","aracred","AraCred","4"],["sourcecred","github","ISSUE","aracred","AraCred","5"],["sourcecred","github","ISSUE","aracred","AraCred","6"],["sourcecred","github","ISSUE","aracred","AraCred","8"],["sourcecred","github","ISSUE","aracred","AraCred","9"],["sourcecred","github","ISSUE","aracred","TheSource","3"],["sourcecred","github","ISSUE","aracred","aracred-cli","1"],["sourcecred","github","ISSUE","aracred","bot","1"],["sourcecred","github","ISSUE","aracred","bot","2"],["sourcecred","github","ISSUE","aracred","bot","3"],["sourcecred","github","ISSUE","aracred","bot","5"],["sourcecred","github","ISSUE","aracred","bot","6"],["sourcecred","github","ISSUE","aracred","bot","7"],["sourcecred","github","ISSUE","aracred","comms","1"],["sourcecred","github","ISSUE","aracred","leaderboard","1"],["sourcecred","github","ISSUE","aracred","leaderboard","2"],["sourcecred","github","ISSUE","aracred","onboarding","1"],["sourcecred","github","ISSUE","aracred","onboarding","2"],["sourcecred","github","ISSUE","aracred","onboarding","3"],["sourcecred","github","ISSUE","aracred","onboarding","4"],["sourcecred","github","ISSUE","aracred","onboarding","5"],["sourcecred","github","ISSUE","aracred","onboarding","6"],["sourcecred","github","ISSUE","aracred","website","10"],["sourcecred","github","ISSUE","aracred","website","11"],["sourcecred","github","ISSUE","aracred","website","2"],["sourcecred","github","ISSUE","aracred","website","7"],["sourcecred","github","PULL","aracred","AraCred","1"],["sourcecred","github","PULL","aracred","AraCred","10"],["sourcecred","github","PULL","aracred","AraCred","11"],["sourcecred","github","PULL","aracred","AraCred","13"],["sourcecred","github","PULL","aracred","AraCred","20"],["sourcecred","github","PULL","aracred","AraCred","21"],["sourcecred","github","PULL","aracred","AraCred","27"],["sourcecred","github","PULL","aracred","AraCred","7"],["sourcecred","github","PULL","aracred","TheSource","1"],["sourcecred","github","PULL","aracred","TheSource","2"],["sourcecred","github","PULL","aracred","bot","4"],["sourcecred","github","PULL","aracred","bot","8"],["sourcecred","github","PULL","aracred","bot","9"],["sourcecred","github","PULL","aracred","website","1"],["sourcecred","github","PULL","aracred","website","12"],["sourcecred","github","PULL","aracred","website","13"],["sourcecred","github","PULL","aracred","website","14"],["sourcecred","github","PULL","aracred","website","15"],["sourcecred","github","PULL","aracred","website","16"],["sourcecred","github","PULL","aracred","website","3"],["sourcecred","github","PULL","aracred","website","4"],["sourcecred","github","PULL","aracred","website","5"],["sourcecred","github","PULL","aracred","website","6"],["sourcecred","github","PULL","aracred","website","8"],["sourcecred","github","PULL","aracred","website","9"],["sourcecred","github","REPO","aracred","AraCred"],["sourcecred","github","REPO","aracred","TheSource"],["sourcecred","github","REPO","aracred","aracred-cli"],["sourcecred","github","REPO","aracred","bot"],["sourcecred","github","REPO","aracred","comms"],["sourcecred","github","REPO","aracred","governance"],["sourcecred","github","REPO","aracred","leaderboard"],["sourcecred","github","REPO","aracred","onboarding"],["sourcecred","github","REPO","aracred","website"],["sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],["sourcecred","github","REVIEW","aracred","bot","8","395001410"],["sourcecred","github","REVIEW","aracred","bot","8","395035075"],["sourcecred","github","REVIEW","aracred","website","15","393444362"],["sourcecred","github","USERLIKE","USER","AlexMasmej"],["sourcecred","github","USERLIKE","USER","Beanow"],["sourcecred","github","USERLIKE","USER","Evalir"],["sourcecred","github","USERLIKE","USER","c0mput3rxz"],["sourcecred","github","USERLIKE","USER","vntrp"],["sourcecred","identity","0xGabi"],["sourcecred","identity","Aaron"],["sourcecred","identity","burrrata"],["sourcecred","identity","crisorg"],["sourcecred","identity","cslarson"],["sourcecred","identity","dandelion"],["sourcecred","identity","evalir"],["sourcecred","identity","fabriziovigevani"],["sourcecred","identity","fioreb"],["sourcecred","identity","hammadj"],["sourcecred","identity","li"],["sourcecred","identity","lkngtn"],["sourcecred","identity","mzargham"],["sourcecred","identity","onbjerg"],["sourcecred","identity","rperez"],["sourcecred","identity","sembrestels"],["sourcecred","identity","willjgriff"]]}],"weightsJSON":[{"type":"sourcecred/weights","version":"0.2.0"},{"edgeWeights":{"E\u0000sourcecred\u0000discord\u0000ADDS_REACTION\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000discord\u0000AUTHORS\u0000MESSAGE\u0000":{"backwards":1,"forwards":0.25},"E\u0000sourcecred\u0000discord\u0000MENTIONS\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000discord\u0000REACTS_TO\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000github\u0000AUTHORS\u0000":{"backwards":1,"forwards":0.5},"E\u0000sourcecred\u0000github\u0000CORRESPONDS_TO_COMMIT_TYPE\u0000":{"backwards":1,"forwards":1},"E\u0000sourcecred\u0000github\u0000HAS_PARENT\u0000":{"backwards":0.25,"forwards":1},"E\u0000sourcecred\u0000github\u0000MERGED_AS\u0000":{"backwards":1,"forwards":0.5},"E\u0000sourcecred\u0000github\u0000REACTS\u0000HEART\u0000":{"backwards":0,"forwards":2},"E\u0000sourcecred\u0000github\u0000REACTS\u0000HOORAY\u0000":{"backwards":0,"forwards":4},"E\u0000sourcecred\u0000github\u0000REACTS\u0000ROCKET\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000github\u0000REACTS\u0000THUMBS_UP\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000github\u0000REFERENCES\u0000":{"backwards":0,"forwards":1}},"nodeWeights":{"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000":0,"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000":0,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000629411717704712192\u0000":4,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000629412800346849302\u0000":4,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000635151982298136587\u0000":3,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000❤️\u0000571023281382227978\u0000695669843034243134\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696454968831508630\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696455224532926464\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699021694240686190\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699025335148216410\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000571023281382227978\u0000695669843034243134\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699025335148216410\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699326575627206778\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000571023281382227978\u0000696730540039995493\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000657069807505637397\u0000698965418370400296\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000250086586450968576\u0000698969730580742174\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000321092785921064961\u0000698973708316049488\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000571023281382227978\u0000698921390845198426\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000118260545211072517\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000250086586450968576\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000321092785921064961\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000440281764204642314\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000683892894767251489\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696427343220047872\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696441890048049232\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000699123164340551691\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000700087985634541678\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000321092785921064961\u0000699560532046250034\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000699275497984622760\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000700064920104075394\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420197644632116\u0000👍\u0000537858848912834561\u0000699284090607763506\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000698942081858666527\u0000👍\u0000250086586450968576\u0000699822779670724650\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000👍\u0000657069807505637397\u0000700040376085381152\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000321092785921064961\u0000700040917926543422\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000657069807505637397\u0000700040917926543422\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000🔥\u0000363774203960360961\u0000700039441799970969\u0000":1,"N\u0000sourcecred\u0000discourse\u0000like\u0000":4,"N\u0000sourcecred\u0000discourse\u0000post\u0000":0,"N\u0000sourcecred\u0000discourse\u0000topic\u0000":0,"N\u0000sourcecred\u0000discourse\u0000user\u0000":0,"N\u0000sourcecred\u0000github":2,"N\u0000sourcecred\u0000github\u0000COMMENT\u0000":0.5,"N\u0000sourcecred\u0000github\u0000COMMIT\u0000":1,"N\u0000sourcecred\u0000github\u0000ISSUE\u0000":1,"N\u0000sourcecred\u0000github\u0000PULL\u0000":16,"N\u0000sourcecred\u0000github\u0000REPO\u0000":4,"N\u0000sourcecred\u0000github\u0000REVIEW\u0000":4,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000BOT\u0000":0,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000":0}}]}]}] \ No newline at end of file diff --git a/docs/api/v1/data/projects/QEFyYUNyZWQ/pluginDeclarations.json b/docs/api/v1/data/projects/QEFyYUNyZWQ/pluginDeclarations.json new file mode 100644 index 0000000..5a45ac0 --- /dev/null +++ b/docs/api/v1/data/projects/QEFyYUNyZWQ/pluginDeclarations.json @@ -0,0 +1 @@ +[{"type":"sourcecred/pluginDeclarations","version":"0.1.0"},[{"edgePrefix":"E\u0000sourcecred\u0000github\u0000","edgeTypes":[{"backwardName":"is authored by","defaultWeight":{"backwards":1,"forwards":0.5},"description":"Connects a GitHub account to a post that they authored.\n\nExamples of posts include issues, pull requests, and comments.\n","forwardName":"authors","prefix":"E\u0000sourcecred\u0000github\u0000AUTHORS\u0000"},{"backwardName":"has child","defaultWeight":{"backwards":0.25,"forwards":1},"description":"Connects a GitHub entity to its child entities.\n\nFor example, a Repository has Issues and Pull Requests as children, and a\nPull Request has comments and reviews as children.\n","forwardName":"has parent","prefix":"E\u0000sourcecred\u0000github\u0000HAS_PARENT\u0000"},{"backwardName":"is merged by","defaultWeight":{"backwards":1,"forwards":0.5},"description":"Connects a GitHub pull request to the Git commit that it merges.\n","forwardName":"merges","prefix":"E\u0000sourcecred\u0000github\u0000MERGED_AS\u0000"},{"backwardName":"is referenced by","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects a GitHub post to an entity that it references.\n\nFor example, if you write a GitHub issue comment that says \"thanks\n@username for pull #1337\", it will create references edges to both the user\n@username, and to pull #1337 in the same repository.\n","forwardName":"references","prefix":"E\u0000sourcecred\u0000github\u0000REFERENCES\u0000"},{"backwardName":"got 👍 from","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects users to posts to which they gave a 👍 reaction.\n","forwardName":"reacted 👍 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000THUMBS_UP\u0000"},{"backwardName":"got ❤️ from","defaultWeight":{"backwards":0,"forwards":2},"description":"Connects users to posts to which they gave a ❤️ reaction.\n","forwardName":"reacted ❤️ to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000HEART\u0000"},{"backwardName":"got 🎉 from","defaultWeight":{"backwards":0,"forwards":4},"description":"Connects users to posts to which they gave a 🎉 reaction.\n","forwardName":"reacted 🎉 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000HOORAY\u0000"},{"backwardName":"got 🚀 from","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects users to posts to which they gave a 🚀 reaction.\n","forwardName":"reacted 🚀 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000ROCKET\u0000"},{"backwardName":"merged on GitHub as","defaultWeight":{"backwards":1,"forwards":1},"description":"Connects a commit on GitHub to the corresponding raw Git commit.\n","forwardName":"corresponds to Git commit","prefix":"E\u0000sourcecred\u0000github\u0000CORRESPONDS_TO_COMMIT_TYPE\u0000"}],"name":"GitHub","nodePrefix":"N\u0000sourcecred\u0000github\u0000","nodeTypes":[{"defaultWeight":4,"description":"NodeType for a GitHub repository","name":"Repository","pluralName":"Repositories","prefix":"N\u0000sourcecred\u0000github\u0000REPO\u0000"},{"defaultWeight":2,"description":"NodeType for a GitHub issue","name":"Issue","pluralName":"Issues","prefix":"N\u0000sourcecred\u0000github\u0000ISSUE\u0000"},{"defaultWeight":4,"description":"NodeType for a GitHub pull request","name":"Pull request","pluralName":"Pull requests","prefix":"N\u0000sourcecred\u0000github\u0000PULL\u0000"},{"defaultWeight":1,"description":"NodeType for a GitHub code review","name":"Pull request review","pluralName":"Pull request reviews","prefix":"N\u0000sourcecred\u0000github\u0000REVIEW\u0000"},{"defaultWeight":1,"description":"NodeType for a GitHub comment","name":"Comment","pluralName":"Comments","prefix":"N\u0000sourcecred\u0000github\u0000COMMENT\u0000"},{"defaultWeight":1,"description":"Represents a particular Git commit on GitHub, i.e. scoped to a particular repository","name":"Commit","pluralName":"Commits","prefix":"N\u0000sourcecred\u0000github\u0000COMMIT\u0000"},{"defaultWeight":0,"description":"NodeType for a GitHub user","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000"},{"defaultWeight":0,"description":"NodeType for a GitHub bot account","name":"Bot","pluralName":"Bots","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000BOT\u0000"}],"userTypes":[{"defaultWeight":0,"description":"NodeType for a GitHub user","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000"}]},{"edgePrefix":"E\u0000sourcecred\u0000discord\u0000","edgeTypes":[{"backwardName":"message is authored by","defaultWeight":{"backwards":1,"forwards":0.25},"description":"Connects an author to a message they've created.","forwardName":"authors message","prefix":"E\u0000sourcecred\u0000discord\u0000AUTHORS\u0000MESSAGE\u0000"},{"backwardName":"reaction added by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a member to a reaction that they added.","forwardName":"adds reaction","prefix":"E\u0000sourcecred\u0000discord\u0000ADDS_REACTION\u0000"},{"backwardName":"is reacted to by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a reaction to a message that it reacts to.","forwardName":"reacts to","prefix":"E\u0000sourcecred\u0000discord\u0000REACTS_TO\u0000"},{"backwardName":"is mentioned by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a message to the member being mentioned.","forwardName":"mentions","prefix":"E\u0000sourcecred\u0000discord\u0000MENTIONS\u0000"}],"name":"Discord","nodePrefix":"N\u0000sourcecred\u0000discord\u0000","nodeTypes":[{"defaultWeight":0,"description":"A member of the Discord server","name":"Member","pluralName":"Members","prefix":"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000"},{"defaultWeight":0,"description":"A Discord message, posted in a particular channel","name":"Message","pluralName":"Messages","prefix":"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000"},{"defaultWeight":1,"description":"A reaction by some user, directed at some message","name":"Reaction","pluralName":"Reactions","prefix":"N\u0000sourcecred\u0000discord\u0000REACTION\u0000"}],"userTypes":[{"defaultWeight":0,"description":"A member of the Discord server","name":"Member","pluralName":"Members","prefix":"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000"}]},{"edgePrefix":"E\u0000sourcecred\u0000identity\u0000","edgeTypes":[],"name":"Identity","nodePrefix":"N\u0000sourcecred\u0000identity\u0000","nodeTypes":[{"defaultWeight":0,"description":"A combined user identity as specified to SourceCred","name":"Identity","pluralName":"Identities","prefix":"N\u0000sourcecred\u0000identity\u0000"}],"userTypes":[{"defaultWeight":0,"description":"A combined user identity as specified to SourceCred","name":"Identity","pluralName":"Identities","prefix":"N\u0000sourcecred\u0000identity\u0000"}]}]] \ No newline at end of file diff --git a/docs/api/v1/data/projects/QEFyYUNyZWQ/project.json b/docs/api/v1/data/projects/QEFyYUNyZWQ/project.json new file mode 100644 index 0000000..34312b7 --- /dev/null +++ b/docs/api/v1/data/projects/QEFyYUNyZWQ/project.json @@ -0,0 +1 @@ +[{"type":"sourcecred/project","version":"0.4.0"},{"discord":{"guildId":"695344751490236486","reactionWeights":{"❤️":1,"👍":1,"💯":1,"🔥":1,"🙏":1}},"id":"@AraCred","identities":[{"aliases":["github/burrrata","discord/657069807505637397"],"username":"burrrata"},{"aliases":["github/pythonpete32","discord/571023281382227978"],"username":"Aaron"},{"aliases":["github/hammadj","discord/118260545211072517"],"username":"hammadj"},{"aliases":["github/decentralion","discord/420341518948237331"],"username":"dandelion"},{"aliases":["github/mzargham","discord/250086586450968576"],"username":"mzargham"},{"aliases":["github/lkngtn","discord/363774203960360961"],"username":"lkngtn"},{"aliases":["github/cslarson"],"username":"cslarson"},{"aliases":["github/0xgabi"],"username":"0xGabi"},{"aliases":["github/sembrestels"],"username":"sembrestels"},{"aliases":["github/fabriziovigevani"],"username":"fabriziovigevani"},{"aliases":["github/fioreb"],"username":"fioreb"},{"aliases":["github/onbjerg"],"username":"onbjerg"},{"aliases":["github/rperez89"],"username":"rperez"},{"aliases":["github/willjgriff"],"username":"willjgriff"},{"aliases":["github/luisivan"],"username":"li"},{"aliases":["github/evalir","discord/321092785921064961"],"username":"evalir"},{"aliases":["github/crisog","discord/474405294307278880"],"username":"crisorg"}],"repoIds":[{"name":"AraCred","owner":"aracred"},{"name":"website","owner":"aracred"},{"name":"bot","owner":"aracred"},{"name":"onboarding","owner":"aracred"},{"name":"TheSource","owner":"aracred"},{"name":"governance","owner":"aracred"},{"name":"comms","owner":"aracred"},{"name":"leaderboard","owner":"aracred"},{"name":"aracred-cli","owner":"aracred"}]}] \ No newline at end of file diff --git a/docs/api/v1/data/projects/QEFyYUNyZWQ/weightedGraph.json b/docs/api/v1/data/projects/QEFyYUNyZWQ/weightedGraph.json new file mode 100644 index 0000000..81f0186 --- /dev/null +++ b/docs/api/v1/data/projects/QEFyYUNyZWQ/weightedGraph.json @@ -0,0 +1 @@ +[{"type":"sourcecred/weightedGraph","version":"0.1.0"},{"graphJSON":[{"type":"sourcecred/graph","version":"0.8.0"},{"edges":[{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","👍","695344752031432766","696454968831508630"],"dstIndex":176,"srcIndex":1409,"timestampMs":1586118204077},{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","👍","695344752031432766","696455224532926464"],"dstIndex":177,"srcIndex":1409,"timestampMs":1586118265041},{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","🔥","696400331260821586","698659683526901810"],"dstIndex":188,"srcIndex":1409,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","695344752031432766","699021694240686190"],"dstIndex":178,"srcIndex":1412,"timestampMs":1586730159102},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","695344752031432766","699025335148216410"],"dstIndex":179,"srcIndex":1412,"timestampMs":1586731027162},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","698942081858666527","699822779670724650"],"dstIndex":205,"srcIndex":1412,"timestampMs":1586921152752},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","🔥","695344752031432766","698969730580742174"],"dstIndex":185,"srcIndex":1412,"timestampMs":1586717770000},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","🔥","696400331260821586","698659683526901810"],"dstIndex":189,"srcIndex":1412,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","291388682710024192","🔥","696400331260821586","698659683526901810"],"dstIndex":190,"srcIndex":4,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","291388682710024192","🔥","696400331260821586","699287660589613148"],"dstIndex":191,"srcIndex":4,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","💯","700023168995295233","700040917926543422"],"dstIndex":207,"srcIndex":1406,"timestampMs":1586973160965},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","695344752031432766","698973708316049488"],"dstIndex":186,"srcIndex":1406,"timestampMs":1586718718366},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","696400331260821586","699287660589613148"],"dstIndex":192,"srcIndex":1406,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","696420039141752863","699560532046250034"],"dstIndex":201,"srcIndex":1406,"timestampMs":1586858628046},{"address":["sourcecred","discord","ADDS_REACTION","user","363774203960360961","🔥","700023168995295233","700039441799970969"],"dstIndex":209,"srcIndex":1411,"timestampMs":1586972809029},{"address":["sourcecred","discord","ADDS_REACTION","user","440281764204642314","🔥","696400331260821586","699287660589613148"],"dstIndex":193,"srcIndex":7,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","537858848912834561","👍","696420197644632116","699284090607763506"],"dstIndex":204,"srcIndex":10,"timestampMs":1586792719271},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","❤️","695344752031432766","695669843034243134"],"dstIndex":175,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","👍","695344752031432766","695669843034243134"],"dstIndex":180,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","💯","695344752031432766","696730540039995493"],"dstIndex":183,"srcIndex":1401,"timestampMs":1586183905373},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","695344752031432766","698921390845198426"],"dstIndex":187,"srcIndex":1401,"timestampMs":1586706244909},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696400331260821586","698659683526901810"],"dstIndex":194,"srcIndex":1401,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696400331260821586","699287660589613148"],"dstIndex":195,"srcIndex":1401,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696420039141752863","699275497984622760"],"dstIndex":202,"srcIndex":1401,"timestampMs":1586790670630},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696420039141752863","700064920104075394"],"dstIndex":203,"srcIndex":1401,"timestampMs":1586978883530},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","695344752031432766","699025335148216410"],"dstIndex":181,"srcIndex":1402,"timestampMs":1586731027162},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","695344752031432766","699326575627206778"],"dstIndex":182,"srcIndex":1402,"timestampMs":1586802848489},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","696427343220047872"],"dstIndex":197,"srcIndex":1402,"timestampMs":1586111617618},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","696441890048049232"],"dstIndex":198,"srcIndex":1402,"timestampMs":1586115085852},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","699123164340551691"],"dstIndex":199,"srcIndex":1402,"timestampMs":1586754351459},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","700087985634541678"],"dstIndex":200,"srcIndex":1402,"timestampMs":1586984382781},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","700023168995295233","700040376085381152"],"dstIndex":206,"srcIndex":1402,"timestampMs":1586973031780},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","💯","695344752031432766","698965418370400296"],"dstIndex":184,"srcIndex":1402,"timestampMs":1586716741889},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","💯","700023168995295233","700040917926543422"],"dstIndex":208,"srcIndex":1402,"timestampMs":1586973160965},{"address":["sourcecred","discord","ADDS_REACTION","user","683892894767251489","🔥","696400331260821586","698659683526901810"],"dstIndex":196,"srcIndex":13,"timestampMs":1586643849022},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700038868707180644"],"dstIndex":123,"srcIndex":0,"timestampMs":1586972672393},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700039441799970969"],"dstIndex":124,"srcIndex":0,"timestampMs":1586972809029},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044206176993470"],"dstIndex":128,"srcIndex":0,"timestampMs":1586973944945},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044421760286721"],"dstIndex":129,"srcIndex":0,"timestampMs":1586973996344},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044496049799228"],"dstIndex":130,"srcIndex":0,"timestampMs":1586974014056},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044548411490335"],"dstIndex":131,"srcIndex":0,"timestampMs":1586974026540},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044635619328131"],"dstIndex":132,"srcIndex":0,"timestampMs":1586974047332},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044689285316738"],"dstIndex":133,"srcIndex":0,"timestampMs":1586974060127},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049028251123832"],"dstIndex":134,"srcIndex":0,"timestampMs":1586975094617},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049257490808933"],"dstIndex":135,"srcIndex":0,"timestampMs":1586975149272},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049378643017889"],"dstIndex":136,"srcIndex":0,"timestampMs":1586975178157},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700056792524128306"],"dstIndex":139,"srcIndex":0,"timestampMs":1586976945764},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059334679330946"],"dstIndex":140,"srcIndex":0,"timestampMs":1586977551861},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059353306234910"],"dstIndex":141,"srcIndex":0,"timestampMs":1586977556302},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059384751063091"],"dstIndex":142,"srcIndex":0,"timestampMs":1586977563799},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059438526103572"],"dstIndex":144,"srcIndex":0,"timestampMs":1586977576620},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059538023514154"],"dstIndex":145,"srcIndex":0,"timestampMs":1586977600342},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700061097583050871"],"dstIndex":146,"srcIndex":0,"timestampMs":1586977972170},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700062189503119381"],"dstIndex":148,"srcIndex":0,"timestampMs":1586978232504},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700062400774275204"],"dstIndex":149,"srcIndex":0,"timestampMs":1586978282875},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700063628711166054"],"dstIndex":150,"srcIndex":0,"timestampMs":1586978575638},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700064632144003103"],"dstIndex":152,"srcIndex":0,"timestampMs":1586978814875},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700118599003668510"],"dstIndex":153,"srcIndex":0,"timestampMs":1586991681577},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700335319349985310"],"dstIndex":154,"srcIndex":0,"timestampMs":1587043351734},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700335919315550299"],"dstIndex":155,"srcIndex":0,"timestampMs":1587043494777},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700365992571699350"],"dstIndex":156,"srcIndex":0,"timestampMs":1587050664800},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700366555233517630"],"dstIndex":157,"srcIndex":0,"timestampMs":1587050798949},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700367514638483537"],"dstIndex":158,"srcIndex":0,"timestampMs":1587051027689},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700369922630615040"],"dstIndex":159,"srcIndex":0,"timestampMs":1587051601799},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700370207419662458"],"dstIndex":160,"srcIndex":0,"timestampMs":1587051669698},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700370372230643763"],"dstIndex":161,"srcIndex":0,"timestampMs":1587051708992},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700371209241624656"],"dstIndex":163,"srcIndex":0,"timestampMs":1587051908551},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700371558480216124"],"dstIndex":164,"srcIndex":0,"timestampMs":1587051991816},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397237930295386"],"dstIndex":165,"srcIndex":0,"timestampMs":1587058114274},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397482362011769"],"dstIndex":167,"srcIndex":0,"timestampMs":1587058172551},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397866581229620"],"dstIndex":168,"srcIndex":0,"timestampMs":1587058264156},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397927478067221"],"dstIndex":169,"srcIndex":0,"timestampMs":1587058278675},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700398207733334077"],"dstIndex":171,"srcIndex":0,"timestampMs":1587058345493},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700398301727555604"],"dstIndex":173,"srcIndex":0,"timestampMs":1587058367903},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","695344752031432766","698673271729553469"],"dstIndex":24,"srcIndex":1409,"timestampMs":1586647088702},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","696420197644632116","698672127418695751"],"dstIndex":110,"srcIndex":1409,"timestampMs":1586646815877},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","696420197644632116","698673539011837994"],"dstIndex":111,"srcIndex":1409,"timestampMs":1586647152427},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","199630270285086720","695344752031432766","699383579402174494"],"dstIndex":65,"srcIndex":2,"timestampMs":1586816439248},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","199630270285086720","695344752031432766","699636647557464194"],"dstIndex":66,"srcIndex":2,"timestampMs":1586876775398},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","208321561982271489","695344752031432766","698710365046833192"],"dstIndex":27,"srcIndex":3,"timestampMs":1586655932438},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698919569078878289"],"dstIndex":30,"srcIndex":1412,"timestampMs":1586705810566},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698921167011971168"],"dstIndex":31,"srcIndex":1412,"timestampMs":1586706191543},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698921390845198426"],"dstIndex":32,"srcIndex":1412,"timestampMs":1586706244909},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","699006982681657354"],"dstIndex":46,"srcIndex":1412,"timestampMs":1586726651593},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","699007297099268116"],"dstIndex":47,"srcIndex":1412,"timestampMs":1586726726556},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","698942081858666527","699821888431587439"],"dstIndex":119,"srcIndex":1412,"timestampMs":1586920940264},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","291388682710024192","695344752031432766","698946297012420619"],"dstIndex":36,"srcIndex":4,"timestampMs":1586712183002},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","291388682710024192","696420197644632116","698956579168321617"],"dstIndex":113,"srcIndex":4,"timestampMs":1586714634459},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","699275497984622760"],"dstIndex":86,"srcIndex":1406,"timestampMs":1586790670630},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700064920104075394"],"dstIndex":100,"srcIndex":1406,"timestampMs":1586978883530},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700073516900417556"],"dstIndex":101,"srcIndex":1406,"timestampMs":1586980933166},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700083246087667833"],"dstIndex":103,"srcIndex":1406,"timestampMs":1586983252785},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700087985634541678"],"dstIndex":105,"srcIndex":1406,"timestampMs":1586984382781},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700468593451597902"],"dstIndex":108,"srcIndex":1406,"timestampMs":1587075126756},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700033440564641854"],"dstIndex":121,"srcIndex":1406,"timestampMs":1586971378223},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700051768008114186"],"dstIndex":137,"srcIndex":1406,"timestampMs":1586975747826},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700059438136033361"],"dstIndex":143,"srcIndex":1406,"timestampMs":1586977576527},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700371208880914563"],"dstIndex":162,"srcIndex":1406,"timestampMs":1587051908465},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700397997707755530"],"dstIndex":170,"srcIndex":1406,"timestampMs":1587058295419},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700399163313094746"],"dstIndex":174,"srcIndex":1406,"timestampMs":1587058573321},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","695344752031432766","699304903796981771"],"dstIndex":57,"srcIndex":1411,"timestampMs":1586797681522},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700040376085381152"],"dstIndex":125,"srcIndex":1411,"timestampMs":1586973031780},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":1411,"timestampMs":1586973160965},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700055780807802900"],"dstIndex":138,"srcIndex":1411,"timestampMs":1586976704552},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698965088530595990"],"dstIndex":37,"srcIndex":1405,"timestampMs":1586716663249},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698965418370400296"],"dstIndex":38,"srcIndex":1405,"timestampMs":1586716741889},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698969730580742174"],"dstIndex":42,"srcIndex":1405,"timestampMs":1586717770000},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699020835096231937"],"dstIndex":49,"srcIndex":1405,"timestampMs":1586729954266},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699021694240686190"],"dstIndex":50,"srcIndex":1405,"timestampMs":1586730159102},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":1405,"timestampMs":1586731027162},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699137595724267520"],"dstIndex":55,"srcIndex":1405,"timestampMs":1586757792169},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","696420039141752863","699407535194767410"],"dstIndex":92,"srcIndex":1405,"timestampMs":1586822150754},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","440281764204642314","695344917068906598","697318813192028200"],"dstIndex":71,"srcIndex":7,"timestampMs":1586324160622},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699306499930980452"],"dstIndex":58,"srcIndex":8,"timestampMs":1586798062070},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699325373472702534"],"dstIndex":60,"srcIndex":8,"timestampMs":1586802561873},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699326575627206778"],"dstIndex":62,"srcIndex":8,"timestampMs":1586802848489},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699358233437143163"],"dstIndex":64,"srcIndex":8,"timestampMs":1586810396299},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","505789102222737420","695344752031432766","698932174396850236"],"dstIndex":33,"srcIndex":9,"timestampMs":1586708815908},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","537858848912834561","696420039141752863","696789204767866911"],"dstIndex":80,"srcIndex":10,"timestampMs":1586197892134},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","696708274682069062"],"dstIndex":19,"srcIndex":1401,"timestampMs":1586178596898},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","698799127244308550"],"dstIndex":28,"srcIndex":1401,"timestampMs":1586677094995},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","699124769349566484"],"dstIndex":54,"srcIndex":1401,"timestampMs":1586754734123},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344917068906598","697081143551328256"],"dstIndex":70,"srcIndex":1401,"timestampMs":1586267495764},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344917068906598","697375832364023889"],"dstIndex":72,"srcIndex":1401,"timestampMs":1586337755052},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","696427343220047872"],"dstIndex":75,"srcIndex":1401,"timestampMs":1586111617618},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","696441890048049232"],"dstIndex":77,"srcIndex":1401,"timestampMs":1586115085852},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699122711745527878"],"dstIndex":82,"srcIndex":1401,"timestampMs":1586754243552},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699123164340551691"],"dstIndex":83,"srcIndex":1401,"timestampMs":1586754351459},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699939694221328435"],"dstIndex":97,"srcIndex":1401,"timestampMs":1586949027353},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","700345588725841990"],"dstIndex":106,"srcIndex":1401,"timestampMs":1587045800144},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","700354840445976616"],"dstIndex":107,"srcIndex":1401,"timestampMs":1587048005926},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696451005914546256"],"dstIndex":15,"srcIndex":1402,"timestampMs":1586117259244},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696454968831508630"],"dstIndex":16,"srcIndex":1402,"timestampMs":1586118204077},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696455224532926464"],"dstIndex":17,"srcIndex":1402,"timestampMs":1586118265041},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696730540039995493"],"dstIndex":20,"srcIndex":1402,"timestampMs":1586183905373},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696740396331696198"],"dstIndex":21,"srcIndex":1402,"timestampMs":1586186255296},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696769305131614260"],"dstIndex":22,"srcIndex":1402,"timestampMs":1586193147691},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698691171811328080"],"dstIndex":25,"srcIndex":1402,"timestampMs":1586651356414},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698710294427467857"],"dstIndex":26,"srcIndex":1402,"timestampMs":1586655915601},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698897288373993508"],"dstIndex":29,"srcIndex":1402,"timestampMs":1586700498432},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698935929942966332"],"dstIndex":34,"srcIndex":1402,"timestampMs":1586709711300},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698941350531301477"],"dstIndex":35,"srcIndex":1402,"timestampMs":1586711003669},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698968459890917436"],"dstIndex":39,"srcIndex":1402,"timestampMs":1586717467044},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698968989878976612"],"dstIndex":40,"srcIndex":1402,"timestampMs":1586717593403},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698969370533298296"],"dstIndex":41,"srcIndex":1402,"timestampMs":1586717684158},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698970943955140738"],"dstIndex":43,"srcIndex":1402,"timestampMs":1586718059291},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698973708316049488"],"dstIndex":44,"srcIndex":1402,"timestampMs":1586718718366},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698982179069362196"],"dstIndex":45,"srcIndex":1402,"timestampMs":1586720737951},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699016223303794728"],"dstIndex":48,"srcIndex":1402,"timestampMs":1586728854729},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699022762215211088"],"dstIndex":51,"srcIndex":1402,"timestampMs":1586730413727},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699024432244588644"],"dstIndex":52,"srcIndex":1402,"timestampMs":1586730811893},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699302777167413379"],"dstIndex":56,"srcIndex":1402,"timestampMs":1586797174494},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699318638519255111"],"dstIndex":59,"srcIndex":1402,"timestampMs":1586800956135},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699325915578236949"],"dstIndex":61,"srcIndex":1402,"timestampMs":1586802691121},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699342838756016128"],"dstIndex":63,"srcIndex":1402,"timestampMs":1586806725921},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699696022477340735"],"dstIndex":67,"srcIndex":1402,"timestampMs":1586890931482},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","700038397376331798"],"dstIndex":68,"srcIndex":1402,"timestampMs":1586972560019},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344917068906598","697073300131807274"],"dstIndex":69,"srcIndex":1402,"timestampMs":1586265625747},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":1402,"timestampMs":1586643849022},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":1402,"timestampMs":1586793570421},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696440757908799568"],"dstIndex":76,"srcIndex":1402,"timestampMs":1586114815929},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696452154268975225"],"dstIndex":78,"srcIndex":1402,"timestampMs":1586117533033},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696730851802742794"],"dstIndex":79,"srcIndex":1402,"timestampMs":1586183979703},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699020484167073792"],"dstIndex":81,"srcIndex":1402,"timestampMs":1586729870598},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699276546795372595"],"dstIndex":87,"srcIndex":1402,"timestampMs":1586790920686},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699278809974833224"],"dstIndex":89,"srcIndex":1402,"timestampMs":1586791460270},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699404949448163368"],"dstIndex":90,"srcIndex":1402,"timestampMs":1586821534264},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699406916300046346"],"dstIndex":91,"srcIndex":1402,"timestampMs":1586822003198},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699408033343733841"],"dstIndex":93,"srcIndex":1402,"timestampMs":1586822269522},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699410487020093501"],"dstIndex":94,"srcIndex":1402,"timestampMs":1586822854524},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700016555521736837"],"dstIndex":98,"srcIndex":1402,"timestampMs":1586967352515},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700064770367160361"],"dstIndex":99,"srcIndex":1402,"timestampMs":1586978847830},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700078148615798814"],"dstIndex":102,"srcIndex":1402,"timestampMs":1586982037453},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700085865933832252"],"dstIndex":104,"srcIndex":1402,"timestampMs":1586983877405},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","698667046661128244"],"dstIndex":109,"srcIndex":1402,"timestampMs":1586645604530},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","698683402920001637"],"dstIndex":112,"srcIndex":1402,"timestampMs":1586649504166},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699017594287685672"],"dstIndex":114,"srcIndex":1402,"timestampMs":1586729181597},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699283043940302898"],"dstIndex":115,"srcIndex":1402,"timestampMs":1586792469726},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699284090607763506"],"dstIndex":116,"srcIndex":1402,"timestampMs":1586792719271},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699303864872075295"],"dstIndex":117,"srcIndex":1402,"timestampMs":1586797433823},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699352914476400712"],"dstIndex":118,"srcIndex":1402,"timestampMs":1586809128160},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","698942081858666527","699822779670724650"],"dstIndex":120,"srcIndex":1402,"timestampMs":1586921152752},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700036022368731256"],"dstIndex":122,"srcIndex":1402,"timestampMs":1586971993773},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700040992916766780"],"dstIndex":127,"srcIndex":1402,"timestampMs":1586973178844},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700062058405953678"],"dstIndex":147,"srcIndex":1402,"timestampMs":1586978201248},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700064631778967634"],"dstIndex":151,"srcIndex":1402,"timestampMs":1586978814788},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699274952301609111"],"dstIndex":84,"srcIndex":12,"timestampMs":1586790540529},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699275129204637708"],"dstIndex":85,"srcIndex":12,"timestampMs":1586790582706},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699277478530646016"],"dstIndex":88,"srcIndex":12,"timestampMs":1586791142829},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699558251074682931"],"dstIndex":95,"srcIndex":12,"timestampMs":1586858084220},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699560532046250034"],"dstIndex":96,"srcIndex":12,"timestampMs":1586858628046},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","700023168995295233","700397481799974962"],"dstIndex":166,"srcIndex":12,"timestampMs":1587058172417},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","700023168995295233","700398301412982965"],"dstIndex":172,"srcIndex":12,"timestampMs":1587058367828},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","683892894767251489","695344752031432766","696609260196593664"],"dstIndex":18,"srcIndex":13,"timestampMs":1586154990005},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","683892894767251489","695344752031432766","696853096441184326"],"dstIndex":23,"srcIndex":13,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344752031432766","118260545211072517","698673271729553469","user","657069807505637397"],"dstIndex":1402,"srcIndex":24,"timestampMs":1586647088702},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699383579402174494","user","571023281382227978"],"dstIndex":1401,"srcIndex":65,"timestampMs":1586816439248},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699383579402174494","user","657069807505637397"],"dstIndex":1402,"srcIndex":65,"timestampMs":1586816439248},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699636647557464194","user","665203331639148553"],"dstIndex":12,"srcIndex":66,"timestampMs":1586876775398},{"address":["sourcecred","discord","MENTIONS","695344752031432766","208321561982271489","698710365046833192","user","657069807505637397"],"dstIndex":1402,"srcIndex":27,"timestampMs":1586655932438},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698919569078878289","user","657069807505637397"],"dstIndex":1402,"srcIndex":30,"timestampMs":1586705810566},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698921167011971168","user","118260545211072517"],"dstIndex":1409,"srcIndex":31,"timestampMs":1586706191543},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698921167011971168","user","420341518948237331"],"dstIndex":1405,"srcIndex":31,"timestampMs":1586706191543},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699006982681657354","user","250086586450968576"],"dstIndex":1412,"srcIndex":46,"timestampMs":1586726651593},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699006982681657354","user","657069807505637397"],"dstIndex":1402,"srcIndex":46,"timestampMs":1586726651593},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699007297099268116","user","657069807505637397"],"dstIndex":1402,"srcIndex":47,"timestampMs":1586726726556},{"address":["sourcecred","discord","MENTIONS","695344752031432766","291388682710024192","698946297012420619","user","250086586450968576"],"dstIndex":1412,"srcIndex":36,"timestampMs":1586712183002},{"address":["sourcecred","discord","MENTIONS","695344752031432766","363774203960360961","699304903796981771","user","464169801036726292"],"dstIndex":8,"srcIndex":57,"timestampMs":1586797681522},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","698965088530595990","user","657069807505637397"],"dstIndex":1402,"srcIndex":37,"timestampMs":1586716663249},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","698969730580742174","user","250086586450968576"],"dstIndex":1412,"srcIndex":42,"timestampMs":1586717770000},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699020835096231937","user","250086586450968576"],"dstIndex":1412,"srcIndex":49,"timestampMs":1586729954266},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699020835096231937","user","657069807505637397"],"dstIndex":1402,"srcIndex":49,"timestampMs":1586729954266},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699137595724267520","user","571023281382227978"],"dstIndex":1401,"srcIndex":55,"timestampMs":1586757792169},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699306499930980452","user","363774203960360961"],"dstIndex":1411,"srcIndex":58,"timestampMs":1586798062070},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699325373472702534","user","363774203960360961"],"dstIndex":1411,"srcIndex":60,"timestampMs":1586802561873},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699358233437143163","user","363774203960360961"],"dstIndex":1411,"srcIndex":64,"timestampMs":1586810396299},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699358233437143163","user","464169801036726292"],"dstIndex":8,"srcIndex":64,"timestampMs":1586810396299},{"address":["sourcecred","discord","MENTIONS","695344752031432766","505789102222737420","698932174396850236","user","571023281382227978"],"dstIndex":1401,"srcIndex":33,"timestampMs":1586708815908},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","696708274682069062","user","683892894767251489"],"dstIndex":13,"srcIndex":19,"timestampMs":1586178596898},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","698799127244308550","user","505789102222737420"],"dstIndex":9,"srcIndex":28,"timestampMs":1586677094995},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","699124769349566484","user","420341518948237331"],"dstIndex":1405,"srcIndex":54,"timestampMs":1586754734123},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696451005914546256","user","118260545211072517"],"dstIndex":1409,"srcIndex":15,"timestampMs":1586117259244},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696730540039995493","user","571023281382227978"],"dstIndex":1401,"srcIndex":20,"timestampMs":1586183905373},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696740396331696198","user","665203331639148553"],"dstIndex":12,"srcIndex":21,"timestampMs":1586186255296},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696769305131614260","user","371754999304290304"],"dstIndex":6,"srcIndex":22,"timestampMs":1586193147691},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698691171811328080","user","250086586450968576"],"dstIndex":1412,"srcIndex":25,"timestampMs":1586651356414},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698710294427467857","user","208321561982271489"],"dstIndex":3,"srcIndex":26,"timestampMs":1586655915601},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698897288373993508","user","250086586450968576"],"dstIndex":1412,"srcIndex":29,"timestampMs":1586700498432},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698897288373993508","user","571023281382227978"],"dstIndex":1401,"srcIndex":29,"timestampMs":1586700498432},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698935929942966332","user","333143183355543552"],"dstIndex":5,"srcIndex":34,"timestampMs":1586709711300},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698935929942966332","user","505789102222737420"],"dstIndex":9,"srcIndex":34,"timestampMs":1586709711300},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698941350531301477","user","250086586450968576"],"dstIndex":1412,"srcIndex":35,"timestampMs":1586711003669},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968459890917436","user","420341518948237331"],"dstIndex":1405,"srcIndex":39,"timestampMs":1586717467044},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","118260545211072517"],"dstIndex":1409,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","420341518948237331"],"dstIndex":1405,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","657069807505637397"],"dstIndex":1402,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698969370533298296","user","420341518948237331"],"dstIndex":1405,"srcIndex":41,"timestampMs":1586717684158},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698970943955140738","user","321092785921064961"],"dstIndex":1406,"srcIndex":43,"timestampMs":1586718059291},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698982179069362196","user","420341518948237331"],"dstIndex":1405,"srcIndex":45,"timestampMs":1586720737951},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699016223303794728","user","250086586450968576"],"dstIndex":1412,"srcIndex":48,"timestampMs":1586728854729},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699016223303794728","user","657069807505637397"],"dstIndex":1402,"srcIndex":48,"timestampMs":1586728854729},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699022762215211088","user","420341518948237331"],"dstIndex":1405,"srcIndex":51,"timestampMs":1586730413727},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699024432244588644","user","420341518948237331"],"dstIndex":1405,"srcIndex":52,"timestampMs":1586730811893},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699302777167413379","user","464169801036726292"],"dstIndex":8,"srcIndex":56,"timestampMs":1586797174494},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699318638519255111","user","464169801036726292"],"dstIndex":8,"srcIndex":59,"timestampMs":1586800956135},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699325915578236949","user","464169801036726292"],"dstIndex":8,"srcIndex":61,"timestampMs":1586802691121},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699342838756016128","user","199630270285086720"],"dstIndex":2,"srcIndex":63,"timestampMs":1586806725921},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699696022477340735","user","143776454050709505"],"dstIndex":1,"srcIndex":67,"timestampMs":1586890931482},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699696022477340735","user","633708951447535616"],"dstIndex":11,"srcIndex":67,"timestampMs":1586890931482},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","700038397376331798","bot","699326460120530944"],"dstIndex":0,"srcIndex":68,"timestampMs":1586972560019},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696609260196593664","user","657069807505637397"],"dstIndex":1402,"srcIndex":18,"timestampMs":1586154990005},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696853096441184326","user","571023281382227978"],"dstIndex":1401,"srcIndex":23,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696853096441184326","user","657069807505637397"],"dstIndex":1402,"srcIndex":23,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344917068906598","440281764204642314","697318813192028200","user","571023281382227978"],"dstIndex":1401,"srcIndex":71,"timestampMs":1586324160622},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697081143551328256","user","440281764204642314"],"dstIndex":7,"srcIndex":70,"timestampMs":1586267495764},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697375832364023889","user","440281764204642314"],"dstIndex":7,"srcIndex":72,"timestampMs":1586337755052},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697375832364023889","user","571023281382227978"],"dstIndex":1401,"srcIndex":72,"timestampMs":1586337755052},{"address":["sourcecred","discord","MENTIONS","695344917068906598","657069807505637397","697073300131807274","user","571023281382227978"],"dstIndex":1401,"srcIndex":69,"timestampMs":1586265625747},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700073516900417556","user","657069807505637397"],"dstIndex":1402,"srcIndex":101,"timestampMs":1586980933166},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700083246087667833","user","571023281382227978"],"dstIndex":1401,"srcIndex":103,"timestampMs":1586983252785},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700468593451597902","user","474405294307278880"],"dstIndex":1403,"srcIndex":108,"timestampMs":1587075126756},{"address":["sourcecred","discord","MENTIONS","696420039141752863","420341518948237331","699407535194767410","user","118260545211072517"],"dstIndex":1409,"srcIndex":92,"timestampMs":1586822150754},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","537858848912834561"],"dstIndex":10,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","571023281382227978"],"dstIndex":1401,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","657069807505637397"],"dstIndex":1402,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699122711745527878","user","657069807505637397"],"dstIndex":1402,"srcIndex":82,"timestampMs":1586754243552},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699939694221328435","user","571023281382227978"],"dstIndex":1401,"srcIndex":97,"timestampMs":1586949027353},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699939694221328435","user","665203331639148553"],"dstIndex":12,"srcIndex":97,"timestampMs":1586949027353},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","700345588725841990","user","321092785921064961"],"dstIndex":1406,"srcIndex":106,"timestampMs":1587045800144},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","700354840445976616","user","321092785921064961"],"dstIndex":1406,"srcIndex":107,"timestampMs":1587048005926},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696440757908799568","user","571023281382227978"],"dstIndex":1401,"srcIndex":76,"timestampMs":1586114815929},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696452154268975225","user","571023281382227978"],"dstIndex":1401,"srcIndex":78,"timestampMs":1586117533033},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696730851802742794","user","537858848912834561"],"dstIndex":10,"srcIndex":79,"timestampMs":1586183979703},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699020484167073792","user","571023281382227978"],"dstIndex":1401,"srcIndex":81,"timestampMs":1586729870598},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699276546795372595","user","321092785921064961"],"dstIndex":1406,"srcIndex":87,"timestampMs":1586790920686},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699278809974833224","user","118260545211072517"],"dstIndex":1409,"srcIndex":89,"timestampMs":1586791460270},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699404949448163368","user","321092785921064961"],"dstIndex":1406,"srcIndex":90,"timestampMs":1586821534264},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699404949448163368","user","571023281382227978"],"dstIndex":1401,"srcIndex":90,"timestampMs":1586821534264},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699406916300046346","user","420341518948237331"],"dstIndex":1405,"srcIndex":91,"timestampMs":1586822003198},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699408033343733841","user","420341518948237331"],"dstIndex":1405,"srcIndex":93,"timestampMs":1586822269522},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699410487020093501","user","440281764204642314"],"dstIndex":7,"srcIndex":94,"timestampMs":1586822854524},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700016555521736837","user","321092785921064961"],"dstIndex":1406,"srcIndex":98,"timestampMs":1586967352515},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700064770367160361","user","321092785921064961"],"dstIndex":1406,"srcIndex":99,"timestampMs":1586978847830},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700078148615798814","user","321092785921064961"],"dstIndex":1406,"srcIndex":102,"timestampMs":1586982037453},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700078148615798814","user","657069807505637397"],"dstIndex":1402,"srcIndex":102,"timestampMs":1586982037453},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700085865933832252","user","321092785921064961"],"dstIndex":1406,"srcIndex":104,"timestampMs":1586983877405},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699274952301609111","user","321092785921064961"],"dstIndex":1406,"srcIndex":84,"timestampMs":1586790540529},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699275129204637708","user","657069807505637397"],"dstIndex":1402,"srcIndex":85,"timestampMs":1586790582706},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699277478530646016","user","321092785921064961"],"dstIndex":1406,"srcIndex":88,"timestampMs":1586791142829},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699558251074682931","user","571023281382227978"],"dstIndex":1401,"srcIndex":95,"timestampMs":1586858084220},{"address":["sourcecred","discord","MENTIONS","696420197644632116","118260545211072517","698672127418695751","user","657069807505637397"],"dstIndex":1402,"srcIndex":110,"timestampMs":1586646815877},{"address":["sourcecred","discord","MENTIONS","696420197644632116","118260545211072517","698673539011837994","user","657069807505637397"],"dstIndex":1402,"srcIndex":111,"timestampMs":1586647152427},{"address":["sourcecred","discord","MENTIONS","696420197644632116","291388682710024192","698956579168321617","user","657069807505637397"],"dstIndex":1402,"srcIndex":113,"timestampMs":1586714634459},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","698667046661128244","user","118260545211072517"],"dstIndex":1409,"srcIndex":109,"timestampMs":1586645604530},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","698683402920001637","user","683892894767251489"],"dstIndex":13,"srcIndex":112,"timestampMs":1586649504166},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699017594287685672","user","683892894767251489"],"dstIndex":13,"srcIndex":114,"timestampMs":1586729181597},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699283043940302898","user","537858848912834561"],"dstIndex":10,"srcIndex":115,"timestampMs":1586792469726},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699284090607763506","user","537858848912834561"],"dstIndex":10,"srcIndex":116,"timestampMs":1586792719271},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699303864872075295","user","420341518948237331"],"dstIndex":1405,"srcIndex":117,"timestampMs":1586797433823},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699352914476400712","user","537858848912834561"],"dstIndex":10,"srcIndex":118,"timestampMs":1586809128160},{"address":["sourcecred","discord","MENTIONS","698942081858666527","250086586450968576","699821888431587439","user","657069807505637397"],"dstIndex":1402,"srcIndex":119,"timestampMs":1586920940264},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700033440564641854","user","657069807505637397"],"dstIndex":1402,"srcIndex":121,"timestampMs":1586971378223},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700051768008114186","user","363774203960360961"],"dstIndex":1411,"srcIndex":137,"timestampMs":1586975747826},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700059438136033361","user","657069807505637397"],"dstIndex":1402,"srcIndex":143,"timestampMs":1586977576527},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700371208880914563","bot","699326460120530944"],"dstIndex":0,"srcIndex":162,"timestampMs":1587051908465},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700397997707755530","user","474405294307278880"],"dstIndex":1403,"srcIndex":170,"timestampMs":1587058295419},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700399163313094746","user","665203331639148553"],"dstIndex":12,"srcIndex":174,"timestampMs":1587058573321},{"address":["sourcecred","discord","MENTIONS","700023168995295233","363774203960360961","700055780807802900","user","321092785921064961"],"dstIndex":1406,"srcIndex":138,"timestampMs":1586976704552},{"address":["sourcecred","discord","MENTIONS","700023168995295233","363774203960360961","700055780807802900","user","363774203960360961"],"dstIndex":1411,"srcIndex":138,"timestampMs":1586976704552},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700036022368731256","user","321092785921064961"],"dstIndex":1406,"srcIndex":122,"timestampMs":1586971993773},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700040992916766780","user","321092785921064961"],"dstIndex":1406,"srcIndex":127,"timestampMs":1586973178844},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700062058405953678","user","321092785921064961"],"dstIndex":1406,"srcIndex":147,"timestampMs":1586978201248},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700064631778967634","user","321092785921064961"],"dstIndex":1406,"srcIndex":151,"timestampMs":1586978814788},{"address":["sourcecred","discord","MENTIONS","700023168995295233","665203331639148553","700397481799974962","user","321092785921064961"],"dstIndex":1406,"srcIndex":166,"timestampMs":1587058172417},{"address":["sourcecred","discord","MENTIONS","700023168995295233","665203331639148553","700398301412982965","user","321092785921064961"],"dstIndex":1406,"srcIndex":172,"timestampMs":1587058367828},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700038868707180644","user","321092785921064961"],"dstIndex":1406,"srcIndex":123,"timestampMs":1586972672393},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700039441799970969","user","321092785921064961"],"dstIndex":1406,"srcIndex":124,"timestampMs":1586972809029},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044206176993470","user","657069807505637397"],"dstIndex":1402,"srcIndex":128,"timestampMs":1586973944945},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044421760286721","user","657069807505637397"],"dstIndex":1402,"srcIndex":129,"timestampMs":1586973996344},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044496049799228","user","657069807505637397"],"dstIndex":1402,"srcIndex":130,"timestampMs":1586974014056},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044548411490335","user","657069807505637397"],"dstIndex":1402,"srcIndex":131,"timestampMs":1586974026540},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044635619328131","user","657069807505637397"],"dstIndex":1402,"srcIndex":132,"timestampMs":1586974047332},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044689285316738","user","657069807505637397"],"dstIndex":1402,"srcIndex":133,"timestampMs":1586974060127},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049028251123832","user","363774203960360961"],"dstIndex":1411,"srcIndex":134,"timestampMs":1586975094617},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049257490808933","user","363774203960360961"],"dstIndex":1411,"srcIndex":135,"timestampMs":1586975149272},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049378643017889","user","363774203960360961"],"dstIndex":1411,"srcIndex":136,"timestampMs":1586975178157},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700056792524128306","user","321092785921064961"],"dstIndex":1406,"srcIndex":139,"timestampMs":1586976945764},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059334679330946","user","657069807505637397"],"dstIndex":1402,"srcIndex":140,"timestampMs":1586977551861},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059353306234910","user","657069807505637397"],"dstIndex":1402,"srcIndex":141,"timestampMs":1586977556302},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059384751063091","user","657069807505637397"],"dstIndex":1402,"srcIndex":142,"timestampMs":1586977563799},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059438526103572","user","321092785921064961"],"dstIndex":1406,"srcIndex":144,"timestampMs":1586977576620},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059538023514154","user","657069807505637397"],"dstIndex":1402,"srcIndex":145,"timestampMs":1586977600342},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700061097583050871","user","321092785921064961"],"dstIndex":1406,"srcIndex":146,"timestampMs":1586977972170},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700062189503119381","user","321092785921064961"],"dstIndex":1406,"srcIndex":148,"timestampMs":1586978232504},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700062400774275204","user","363774203960360961"],"dstIndex":1411,"srcIndex":149,"timestampMs":1586978282875},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700063628711166054","user","321092785921064961"],"dstIndex":1406,"srcIndex":150,"timestampMs":1586978575638},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700064632144003103","user","657069807505637397"],"dstIndex":1402,"srcIndex":152,"timestampMs":1586978814875},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700118599003668510","user","321092785921064961"],"dstIndex":1406,"srcIndex":153,"timestampMs":1586991681577},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700335319349985310","user","321092785921064961"],"dstIndex":1406,"srcIndex":154,"timestampMs":1587043351734},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700335919315550299","user","321092785921064961"],"dstIndex":1406,"srcIndex":155,"timestampMs":1587043494777},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700365992571699350","user","665203331639148553"],"dstIndex":12,"srcIndex":156,"timestampMs":1587050664800},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700366555233517630","user","665203331639148553"],"dstIndex":12,"srcIndex":157,"timestampMs":1587050798949},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700367514638483537","user","665203331639148553"],"dstIndex":12,"srcIndex":158,"timestampMs":1587051027689},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700369922630615040","user","321092785921064961"],"dstIndex":1406,"srcIndex":159,"timestampMs":1587051601799},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700370207419662458","user","321092785921064961"],"dstIndex":1406,"srcIndex":160,"timestampMs":1587051669698},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700370372230643763","user","321092785921064961"],"dstIndex":1406,"srcIndex":161,"timestampMs":1587051708992},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700371209241624656","user","321092785921064961"],"dstIndex":1406,"srcIndex":163,"timestampMs":1587051908551},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700371558480216124","user","321092785921064961"],"dstIndex":1406,"srcIndex":164,"timestampMs":1587051991816},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397237930295386","user","665203331639148553"],"dstIndex":12,"srcIndex":165,"timestampMs":1587058114274},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397482362011769","user","665203331639148553"],"dstIndex":12,"srcIndex":167,"timestampMs":1587058172551},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397866581229620","user","474405294307278880"],"dstIndex":1403,"srcIndex":168,"timestampMs":1587058264156},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397927478067221","user","474405294307278880"],"dstIndex":1403,"srcIndex":169,"timestampMs":1587058278675},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700398207733334077","user","665203331639148553"],"dstIndex":12,"srcIndex":171,"timestampMs":1587058345493},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700398301727555604","user","665203331639148553"],"dstIndex":12,"srcIndex":173,"timestampMs":1587058367903},{"address":["sourcecred","discord","REACTS_TO","❤️","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":175,"timestampMs":1585931015500},{"address":["sourcecred","discord","REACTS_TO","👍","118260545211072517","695344752031432766","696454968831508630"],"dstIndex":16,"srcIndex":176,"timestampMs":1586118204077},{"address":["sourcecred","discord","REACTS_TO","👍","118260545211072517","695344752031432766","696455224532926464"],"dstIndex":17,"srcIndex":177,"timestampMs":1586118265041},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","695344752031432766","699021694240686190"],"dstIndex":50,"srcIndex":178,"timestampMs":1586730159102},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":179,"timestampMs":1586731027162},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","698942081858666527","699822779670724650"],"dstIndex":120,"srcIndex":205,"timestampMs":1586921152752},{"address":["sourcecred","discord","REACTS_TO","👍","537858848912834561","696420197644632116","699284090607763506"],"dstIndex":116,"srcIndex":204,"timestampMs":1586792719271},{"address":["sourcecred","discord","REACTS_TO","👍","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":180,"timestampMs":1585931015500},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":181,"timestampMs":1586731027162},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","695344752031432766","699326575627206778"],"dstIndex":62,"srcIndex":182,"timestampMs":1586802848489},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","696427343220047872"],"dstIndex":75,"srcIndex":197,"timestampMs":1586111617618},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","696441890048049232"],"dstIndex":77,"srcIndex":198,"timestampMs":1586115085852},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","699123164340551691"],"dstIndex":83,"srcIndex":199,"timestampMs":1586754351459},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","700087985634541678"],"dstIndex":105,"srcIndex":200,"timestampMs":1586984382781},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","700023168995295233","700040376085381152"],"dstIndex":125,"srcIndex":206,"timestampMs":1586973031780},{"address":["sourcecred","discord","REACTS_TO","💯","321092785921064961","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":207,"timestampMs":1586973160965},{"address":["sourcecred","discord","REACTS_TO","💯","571023281382227978","695344752031432766","696730540039995493"],"dstIndex":20,"srcIndex":183,"timestampMs":1586183905373},{"address":["sourcecred","discord","REACTS_TO","💯","657069807505637397","695344752031432766","698965418370400296"],"dstIndex":38,"srcIndex":184,"timestampMs":1586716741889},{"address":["sourcecred","discord","REACTS_TO","💯","657069807505637397","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":208,"timestampMs":1586973160965},{"address":["sourcecred","discord","REACTS_TO","🔥","118260545211072517","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":188,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","250086586450968576","695344752031432766","698969730580742174"],"dstIndex":42,"srcIndex":185,"timestampMs":1586717770000},{"address":["sourcecred","discord","REACTS_TO","🔥","250086586450968576","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":189,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","291388682710024192","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":190,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","291388682710024192","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":191,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","695344752031432766","698973708316049488"],"dstIndex":44,"srcIndex":186,"timestampMs":1586718718366},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":192,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","696420039141752863","699560532046250034"],"dstIndex":96,"srcIndex":201,"timestampMs":1586858628046},{"address":["sourcecred","discord","REACTS_TO","🔥","363774203960360961","700023168995295233","700039441799970969"],"dstIndex":124,"srcIndex":209,"timestampMs":1586972809029},{"address":["sourcecred","discord","REACTS_TO","🔥","440281764204642314","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":193,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","695344752031432766","698921390845198426"],"dstIndex":32,"srcIndex":187,"timestampMs":1586706244909},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":194,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":195,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696420039141752863","699275497984622760"],"dstIndex":86,"srcIndex":202,"timestampMs":1586790670630},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696420039141752863","700064920104075394"],"dstIndex":100,"srcIndex":203,"timestampMs":1586978883530},{"address":["sourcecred","discord","REACTS_TO","🔥","683892894767251489","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":196,"timestampMs":1586643849022},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","AlexMasmej","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],"dstIndex":983,"srcIndex":1395,"timestampMs":1582941505000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],"dstIndex":873,"srcIndex":1396,"timestampMs":1582978132000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],"dstIndex":906,"srcIndex":1396,"timestampMs":1581914566000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":907,"srcIndex":1396,"timestampMs":1581914856000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],"dstIndex":908,"srcIndex":1396,"timestampMs":1581911765000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],"dstIndex":938,"srcIndex":1396,"timestampMs":1581914897000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],"dstIndex":967,"srcIndex":1396,"timestampMs":1581898623000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],"dstIndex":975,"srcIndex":1396,"timestampMs":1581903076000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":982,"srcIndex":1396,"timestampMs":1581902687000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],"dstIndex":997,"srcIndex":1396,"timestampMs":1581900781000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":1026,"srcIndex":1396,"timestampMs":1581914667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":1028,"srcIndex":1396,"timestampMs":1581903056000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],"dstIndex":1050,"srcIndex":1396,"timestampMs":1581898638000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],"dstIndex":786,"srcIndex":1397,"timestampMs":1586921892000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],"dstIndex":787,"srcIndex":1397,"timestampMs":1586930578000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],"dstIndex":788,"srcIndex":1397,"timestampMs":1586920791000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],"dstIndex":789,"srcIndex":1397,"timestampMs":1586921871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],"dstIndex":790,"srcIndex":1397,"timestampMs":1586920549000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],"dstIndex":791,"srcIndex":1397,"timestampMs":1586839193000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],"dstIndex":792,"srcIndex":1397,"timestampMs":1586916947000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],"dstIndex":793,"srcIndex":1397,"timestampMs":1586919065000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],"dstIndex":794,"srcIndex":1397,"timestampMs":1586971104000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],"dstIndex":795,"srcIndex":1397,"timestampMs":1586957209000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],"dstIndex":796,"srcIndex":1397,"timestampMs":1586915756000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],"dstIndex":797,"srcIndex":1397,"timestampMs":1586916992000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],"dstIndex":798,"srcIndex":1397,"timestampMs":1586932748000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],"dstIndex":799,"srcIndex":1397,"timestampMs":1586934527000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],"dstIndex":802,"srcIndex":1397,"timestampMs":1586805309000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],"dstIndex":803,"srcIndex":1397,"timestampMs":1586918718000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],"dstIndex":804,"srcIndex":1397,"timestampMs":1586831849000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],"dstIndex":805,"srcIndex":1397,"timestampMs":1586977731000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],"dstIndex":806,"srcIndex":1397,"timestampMs":1586921823000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],"dstIndex":807,"srcIndex":1397,"timestampMs":1586960050000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],"dstIndex":808,"srcIndex":1397,"timestampMs":1586933937000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],"dstIndex":809,"srcIndex":1397,"timestampMs":1586832132000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],"dstIndex":810,"srcIndex":1397,"timestampMs":1586958454000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],"dstIndex":1099,"srcIndex":1397,"timestampMs":1586972808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],"dstIndex":1107,"srcIndex":1397,"timestampMs":1587058277000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],"dstIndex":1108,"srcIndex":1397,"timestampMs":1587049226000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],"dstIndex":1123,"srcIndex":1397,"timestampMs":1586978574000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],"dstIndex":1157,"srcIndex":1397,"timestampMs":1586802604000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],"dstIndex":1158,"srcIndex":1397,"timestampMs":1586972788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],"dstIndex":1182,"srcIndex":1397,"timestampMs":1587058263000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],"dstIndex":1188,"srcIndex":1397,"timestampMs":1587050798000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],"dstIndex":1189,"srcIndex":1397,"timestampMs":1587051668000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],"dstIndex":1193,"srcIndex":1397,"timestampMs":1586978547000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],"dstIndex":1194,"srcIndex":1397,"timestampMs":1587051026000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],"dstIndex":1198,"srcIndex":1397,"timestampMs":1586975177000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],"dstIndex":1221,"srcIndex":1397,"timestampMs":1587051708000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],"dstIndex":1240,"srcIndex":1397,"timestampMs":1586820040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],"dstIndex":1267,"srcIndex":1397,"timestampMs":1587049279000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1339,"srcIndex":1397,"timestampMs":1586934042000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","3"],"dstIndex":1340,"srcIndex":1397,"timestampMs":1586934224000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1341,"srcIndex":1397,"timestampMs":1586990170000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","6"],"dstIndex":1342,"srcIndex":1397,"timestampMs":1586990449000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","7"],"dstIndex":1343,"srcIndex":1397,"timestampMs":1586990584000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1361,"srcIndex":1397,"timestampMs":1586802611000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1367,"srcIndex":1397,"timestampMs":1586970997000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","website","12"],"dstIndex":1371,"srcIndex":1397,"timestampMs":1586717760000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","bot","8","395001410"],"dstIndex":1392,"srcIndex":1397,"timestampMs":1587071400000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","bot","8","395035075"],"dstIndex":1393,"srcIndex":1397,"timestampMs":1587075078000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","website","15","393444362"],"dstIndex":1394,"srcIndex":1397,"timestampMs":1586924060000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],"dstIndex":758,"srcIndex":1397,"timestampMs":1586990245000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],"dstIndex":760,"srcIndex":1397,"timestampMs":1586797413000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],"dstIndex":762,"srcIndex":1397,"timestampMs":1586801948000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],"dstIndex":764,"srcIndex":1397,"timestampMs":1586802422000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":778,"srcIndex":1397,"timestampMs":1587071400000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":779,"srcIndex":1397,"timestampMs":1587071419000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":780,"srcIndex":1397,"timestampMs":1587071453000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],"dstIndex":781,"srcIndex":1402,"timestampMs":1586666528000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],"dstIndex":782,"srcIndex":1402,"timestampMs":1586706188000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],"dstIndex":783,"srcIndex":1402,"timestampMs":1586709195000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],"dstIndex":784,"srcIndex":1402,"timestampMs":1586710102000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],"dstIndex":785,"srcIndex":1402,"timestampMs":1586709961000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],"dstIndex":811,"srcIndex":1402,"timestampMs":1586730565000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],"dstIndex":812,"srcIndex":1402,"timestampMs":1586643786000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],"dstIndex":813,"srcIndex":1402,"timestampMs":1586664558000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],"dstIndex":814,"srcIndex":1402,"timestampMs":1586566020000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],"dstIndex":815,"srcIndex":1402,"timestampMs":1586710826000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],"dstIndex":816,"srcIndex":1402,"timestampMs":1586727748000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],"dstIndex":817,"srcIndex":1402,"timestampMs":1586570955000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],"dstIndex":818,"srcIndex":1402,"timestampMs":1586662685000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],"dstIndex":819,"srcIndex":1402,"timestampMs":1586127122000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],"dstIndex":820,"srcIndex":1402,"timestampMs":1586658983000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],"dstIndex":821,"srcIndex":1402,"timestampMs":1586566694000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],"dstIndex":822,"srcIndex":1402,"timestampMs":1586656936000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],"dstIndex":823,"srcIndex":1402,"timestampMs":1586797014000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],"dstIndex":824,"srcIndex":1402,"timestampMs":1586727823000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],"dstIndex":825,"srcIndex":1402,"timestampMs":1586103464000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],"dstIndex":826,"srcIndex":1402,"timestampMs":1586633871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],"dstIndex":827,"srcIndex":1402,"timestampMs":1586647160000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],"dstIndex":828,"srcIndex":1402,"timestampMs":1586660251000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],"dstIndex":829,"srcIndex":1402,"timestampMs":1586649927000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],"dstIndex":831,"srcIndex":1402,"timestampMs":1586571027000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],"dstIndex":832,"srcIndex":1402,"timestampMs":1586644808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],"dstIndex":833,"srcIndex":1402,"timestampMs":1586650718000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],"dstIndex":834,"srcIndex":1402,"timestampMs":1586103441000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],"dstIndex":835,"srcIndex":1402,"timestampMs":1586568293000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],"dstIndex":836,"srcIndex":1402,"timestampMs":1586646704000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],"dstIndex":837,"srcIndex":1402,"timestampMs":1586663015000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],"dstIndex":838,"srcIndex":1402,"timestampMs":1586639136000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],"dstIndex":839,"srcIndex":1402,"timestampMs":1586663769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],"dstIndex":840,"srcIndex":1402,"timestampMs":1586652307000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],"dstIndex":841,"srcIndex":1402,"timestampMs":1586570353000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],"dstIndex":842,"srcIndex":1402,"timestampMs":1586638395000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],"dstIndex":843,"srcIndex":1402,"timestampMs":1586657067000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],"dstIndex":844,"srcIndex":1402,"timestampMs":1586649206000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],"dstIndex":845,"srcIndex":1402,"timestampMs":1586729040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],"dstIndex":846,"srcIndex":1402,"timestampMs":1586567498000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],"dstIndex":848,"srcIndex":1402,"timestampMs":1586568912000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],"dstIndex":849,"srcIndex":1402,"timestampMs":1586640470000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],"dstIndex":850,"srcIndex":1402,"timestampMs":1586111771000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],"dstIndex":851,"srcIndex":1402,"timestampMs":1586569076000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],"dstIndex":852,"srcIndex":1402,"timestampMs":1586648621000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],"dstIndex":853,"srcIndex":1402,"timestampMs":1586111689000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],"dstIndex":854,"srcIndex":1402,"timestampMs":1586651543000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],"dstIndex":855,"srcIndex":1402,"timestampMs":1586661631000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],"dstIndex":856,"srcIndex":1402,"timestampMs":1586739277000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],"dstIndex":857,"srcIndex":1402,"timestampMs":1586644660000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],"dstIndex":858,"srcIndex":1402,"timestampMs":1586792089000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],"dstIndex":859,"srcIndex":1402,"timestampMs":1586645107000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],"dstIndex":860,"srcIndex":1402,"timestampMs":1586656870000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],"dstIndex":861,"srcIndex":1402,"timestampMs":1586790290000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],"dstIndex":862,"srcIndex":1402,"timestampMs":1586571301000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],"dstIndex":863,"srcIndex":1402,"timestampMs":1586565903000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],"dstIndex":864,"srcIndex":1402,"timestampMs":1586633977000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],"dstIndex":865,"srcIndex":1402,"timestampMs":1586645253000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],"dstIndex":866,"srcIndex":1402,"timestampMs":1586567811000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],"dstIndex":867,"srcIndex":1402,"timestampMs":1586664528000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],"dstIndex":868,"srcIndex":1402,"timestampMs":1586645187000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],"dstIndex":870,"srcIndex":1402,"timestampMs":1586654110000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],"dstIndex":871,"srcIndex":1402,"timestampMs":1586570850000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],"dstIndex":898,"srcIndex":1402,"timestampMs":1586106320000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],"dstIndex":909,"srcIndex":1402,"timestampMs":1586106153000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],"dstIndex":933,"srcIndex":1402,"timestampMs":1586112503000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],"dstIndex":944,"srcIndex":1402,"timestampMs":1586109721000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],"dstIndex":964,"srcIndex":1402,"timestampMs":1586106389000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],"dstIndex":1007,"srcIndex":1402,"timestampMs":1586105574000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],"dstIndex":1014,"srcIndex":1402,"timestampMs":1586106281000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],"dstIndex":1057,"srcIndex":1402,"timestampMs":1583592448000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],"dstIndex":1111,"srcIndex":1402,"timestampMs":1586710226000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],"dstIndex":1113,"srcIndex":1402,"timestampMs":1586718047000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],"dstIndex":1120,"srcIndex":1402,"timestampMs":1586796945000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],"dstIndex":1146,"srcIndex":1402,"timestampMs":1586822144000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],"dstIndex":1149,"srcIndex":1402,"timestampMs":1586712379000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],"dstIndex":1153,"srcIndex":1402,"timestampMs":1586810697000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],"dstIndex":1167,"srcIndex":1402,"timestampMs":1587042850000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],"dstIndex":1197,"srcIndex":1402,"timestampMs":1586717770000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],"dstIndex":1209,"srcIndex":1402,"timestampMs":1586704728000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],"dstIndex":1213,"srcIndex":1402,"timestampMs":1586810650000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],"dstIndex":1228,"srcIndex":1402,"timestampMs":1586710445000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],"dstIndex":1238,"srcIndex":1402,"timestampMs":1586711922000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],"dstIndex":1239,"srcIndex":1402,"timestampMs":1586712103000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],"dstIndex":1247,"srcIndex":1402,"timestampMs":1586704788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],"dstIndex":1282,"srcIndex":1402,"timestampMs":1586109667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],"dstIndex":1284,"srcIndex":1402,"timestampMs":1583868918000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],"dstIndex":1286,"srcIndex":1402,"timestampMs":1586115483000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],"dstIndex":1288,"srcIndex":1402,"timestampMs":1586115750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],"dstIndex":1295,"srcIndex":1402,"timestampMs":1586115035000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],"dstIndex":1297,"srcIndex":1402,"timestampMs":1586116855000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],"dstIndex":1303,"srcIndex":1402,"timestampMs":1586115569000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],"dstIndex":1306,"srcIndex":1402,"timestampMs":1586115692000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],"dstIndex":1307,"srcIndex":1402,"timestampMs":1586115737000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],"dstIndex":1309,"srcIndex":1402,"timestampMs":1586115523000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],"dstIndex":1311,"srcIndex":1402,"timestampMs":1584925959000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],"dstIndex":1314,"srcIndex":1402,"timestampMs":1586115159000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","12"],"dstIndex":1317,"srcIndex":1402,"timestampMs":1586638125000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1318,"srcIndex":1402,"timestampMs":1586704018000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","15"],"dstIndex":1319,"srcIndex":1402,"timestampMs":1586705495000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1320,"srcIndex":1402,"timestampMs":1586705553000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","17"],"dstIndex":1321,"srcIndex":1402,"timestampMs":1586705865000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","18"],"dstIndex":1322,"srcIndex":1402,"timestampMs":1586712839000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","22"],"dstIndex":1325,"srcIndex":1402,"timestampMs":1586819336000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":1402,"timestampMs":1586821830000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","24"],"dstIndex":1327,"srcIndex":1402,"timestampMs":1586823283000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","26"],"dstIndex":1329,"srcIndex":1402,"timestampMs":1586921943000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","TheSource","3"],"dstIndex":1336,"srcIndex":1402,"timestampMs":1586104764000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1337,"srcIndex":1402,"timestampMs":1586116752000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1338,"srcIndex":1402,"timestampMs":1586917207000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","comms","1"],"dstIndex":1344,"srcIndex":1402,"timestampMs":1586709265000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","leaderboard","1"],"dstIndex":1345,"srcIndex":1402,"timestampMs":1586706267000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","leaderboard","2"],"dstIndex":1346,"srcIndex":1402,"timestampMs":1586706318000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","1"],"dstIndex":1347,"srcIndex":1402,"timestampMs":1586666816000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","2"],"dstIndex":1348,"srcIndex":1402,"timestampMs":1586666998000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","3"],"dstIndex":1349,"srcIndex":1402,"timestampMs":1586705051000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1350,"srcIndex":1402,"timestampMs":1586709014000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","10"],"dstIndex":1353,"srcIndex":1402,"timestampMs":1586705290000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","11"],"dstIndex":1354,"srcIndex":1402,"timestampMs":1586712148000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","2"],"dstIndex":1355,"srcIndex":1402,"timestampMs":1586571331000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","7"],"dstIndex":1356,"srcIndex":1402,"timestampMs":1586662991000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1370,"srcIndex":1402,"timestampMs":1586566012000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1372,"srcIndex":1402,"timestampMs":1586727817000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1373,"srcIndex":1402,"timestampMs":1586797004000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1376,"srcIndex":1402,"timestampMs":1586633970000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1377,"srcIndex":1402,"timestampMs":1586645179000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1378,"srcIndex":1402,"timestampMs":1586654103000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1379,"srcIndex":1402,"timestampMs":1586656931000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1380,"srcIndex":1402,"timestampMs":1586663009000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1381,"srcIndex":1402,"timestampMs":1586664552000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],"dstIndex":746,"srcIndex":1402,"timestampMs":1586735225000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],"dstIndex":747,"srcIndex":1402,"timestampMs":1586793675000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],"dstIndex":748,"srcIndex":1402,"timestampMs":1586821838000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],"dstIndex":751,"srcIndex":1402,"timestampMs":1586808032000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],"dstIndex":752,"srcIndex":1402,"timestampMs":1586819514000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],"dstIndex":753,"srcIndex":1402,"timestampMs":1586820570000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],"dstIndex":754,"srcIndex":1402,"timestampMs":1586840296000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],"dstIndex":756,"srcIndex":1402,"timestampMs":1586922019000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],"dstIndex":757,"srcIndex":1402,"timestampMs":1586802750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],"dstIndex":759,"srcIndex":1402,"timestampMs":1586666872000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":761,"srcIndex":1402,"timestampMs":1586801390000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":763,"srcIndex":1402,"timestampMs":1586802204000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],"dstIndex":766,"srcIndex":1402,"timestampMs":1586704028000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],"dstIndex":767,"srcIndex":1402,"timestampMs":1586709561000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],"dstIndex":771,"srcIndex":1402,"timestampMs":1586786432000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],"dstIndex":772,"srcIndex":1402,"timestampMs":1586786582000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":774,"srcIndex":1402,"timestampMs":1586790870000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":776,"srcIndex":1402,"timestampMs":1586810690000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","c0mput3rxz","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],"dstIndex":972,"srcIndex":1398,"timestampMs":1583542889000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],"dstIndex":801,"srcIndex":1403,"timestampMs":1587075097000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":1403,"timestampMs":1587070982000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","bot","9"],"dstIndex":1369,"srcIndex":1403,"timestampMs":1587079858000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1374,"srcIndex":1403,"timestampMs":1586914696000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","8","sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],"dstIndex":777,"srcIndex":1403,"timestampMs":1587079943000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],"dstIndex":877,"srcIndex":1409,"timestampMs":1583619788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],"dstIndex":879,"srcIndex":1409,"timestampMs":1585275196000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],"dstIndex":887,"srcIndex":1409,"timestampMs":1583545099000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],"dstIndex":919,"srcIndex":1409,"timestampMs":1583124213000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],"dstIndex":931,"srcIndex":1409,"timestampMs":1582959287000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],"dstIndex":937,"srcIndex":1409,"timestampMs":1583096048000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],"dstIndex":959,"srcIndex":1409,"timestampMs":1585275681000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],"dstIndex":976,"srcIndex":1409,"timestampMs":1583014162000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],"dstIndex":999,"srcIndex":1409,"timestampMs":1583124366000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":1000,"srcIndex":1409,"timestampMs":1582959276000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],"dstIndex":1013,"srcIndex":1409,"timestampMs":1583124346000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],"dstIndex":1018,"srcIndex":1409,"timestampMs":1585361688000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":1037,"srcIndex":1409,"timestampMs":1582941407000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],"dstIndex":1038,"srcIndex":1409,"timestampMs":1582941413000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],"dstIndex":1053,"srcIndex":1409,"timestampMs":1583124164000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],"dstIndex":1056,"srcIndex":1409,"timestampMs":1582941750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],"dstIndex":1061,"srcIndex":1409,"timestampMs":1585365677000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],"dstIndex":800,"srcIndex":1410,"timestampMs":1587052319000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],"dstIndex":830,"srcIndex":1410,"timestampMs":1586855777000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],"dstIndex":847,"srcIndex":1410,"timestampMs":1586855462000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],"dstIndex":869,"srcIndex":1410,"timestampMs":1586874980000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1410,"timestampMs":1586858542000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","onboarding","5"],"dstIndex":1351,"srcIndex":1410,"timestampMs":1586772477000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","onboarding","6"],"dstIndex":1352,"srcIndex":1410,"timestampMs":1586772739000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],"dstIndex":749,"srcIndex":1410,"timestampMs":1586773257000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],"dstIndex":755,"srcIndex":1410,"timestampMs":1586858608000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],"dstIndex":765,"srcIndex":1410,"timestampMs":1586962450000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],"dstIndex":768,"srcIndex":1410,"timestampMs":1586858205000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":769,"srcIndex":1410,"timestampMs":1586773337000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":770,"srcIndex":1410,"timestampMs":1586773655000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],"dstIndex":773,"srcIndex":1410,"timestampMs":1586790511000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],"dstIndex":775,"srcIndex":1410,"timestampMs":1586959270000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],"dstIndex":930,"srcIndex":1412,"timestampMs":1583107086000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],"dstIndex":950,"srcIndex":1412,"timestampMs":1583122040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],"dstIndex":969,"srcIndex":1412,"timestampMs":1583106975000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],"dstIndex":1094,"srcIndex":1412,"timestampMs":1586994934000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],"dstIndex":1211,"srcIndex":1412,"timestampMs":1586810374000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1412,"timestampMs":1586810530000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1363,"srcIndex":1412,"timestampMs":1586995113000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],"dstIndex":874,"srcIndex":1401,"timestampMs":1586104482000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],"dstIndex":896,"srcIndex":1401,"timestampMs":1586104041000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],"dstIndex":921,"srcIndex":1401,"timestampMs":1586105522000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],"dstIndex":941,"srcIndex":1401,"timestampMs":1586104299000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],"dstIndex":996,"srcIndex":1401,"timestampMs":1586103659000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],"dstIndex":1022,"srcIndex":1401,"timestampMs":1586104090000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],"dstIndex":1048,"srcIndex":1401,"timestampMs":1586103656000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],"dstIndex":1072,"srcIndex":1401,"timestampMs":1586425053000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],"dstIndex":1073,"srcIndex":1401,"timestampMs":1586114858000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],"dstIndex":1074,"srcIndex":1401,"timestampMs":1586658939000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],"dstIndex":1075,"srcIndex":1401,"timestampMs":1586425366000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],"dstIndex":1076,"srcIndex":1401,"timestampMs":1586377189000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],"dstIndex":1077,"srcIndex":1401,"timestampMs":1586109857000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],"dstIndex":1079,"srcIndex":1401,"timestampMs":1586439223000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],"dstIndex":1082,"srcIndex":1401,"timestampMs":1586430244000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],"dstIndex":1083,"srcIndex":1401,"timestampMs":1586430128000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],"dstIndex":1085,"srcIndex":1401,"timestampMs":1586638157000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":1088,"srcIndex":1401,"timestampMs":1586535321000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],"dstIndex":1089,"srcIndex":1401,"timestampMs":1586436690000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],"dstIndex":1090,"srcIndex":1401,"timestampMs":1586760993000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],"dstIndex":1093,"srcIndex":1401,"timestampMs":1586425839000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],"dstIndex":1095,"srcIndex":1401,"timestampMs":1586475320000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],"dstIndex":1098,"srcIndex":1401,"timestampMs":1586636313000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],"dstIndex":1100,"srcIndex":1401,"timestampMs":1586436960000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],"dstIndex":1101,"srcIndex":1401,"timestampMs":1586645851000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],"dstIndex":1102,"srcIndex":1401,"timestampMs":1586114997000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],"dstIndex":1103,"srcIndex":1401,"timestampMs":1586436983000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],"dstIndex":1104,"srcIndex":1401,"timestampMs":1586439726000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],"dstIndex":1109,"srcIndex":1401,"timestampMs":1586430447000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],"dstIndex":1110,"srcIndex":1401,"timestampMs":1586438375000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],"dstIndex":1112,"srcIndex":1401,"timestampMs":1586110667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],"dstIndex":1114,"srcIndex":1401,"timestampMs":1586439440000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],"dstIndex":1115,"srcIndex":1401,"timestampMs":1586658493000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],"dstIndex":1118,"srcIndex":1401,"timestampMs":1586641745000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],"dstIndex":1122,"srcIndex":1401,"timestampMs":1586446367000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],"dstIndex":1125,"srcIndex":1401,"timestampMs":1586107822000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],"dstIndex":1128,"srcIndex":1401,"timestampMs":1586111848000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],"dstIndex":1129,"srcIndex":1401,"timestampMs":1586450203000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],"dstIndex":1131,"srcIndex":1401,"timestampMs":1586208161000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],"dstIndex":1135,"srcIndex":1401,"timestampMs":1586608102000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],"dstIndex":1139,"srcIndex":1401,"timestampMs":1586438648000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],"dstIndex":1143,"srcIndex":1401,"timestampMs":1586447296000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],"dstIndex":1144,"srcIndex":1401,"timestampMs":1586262990000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],"dstIndex":1145,"srcIndex":1401,"timestampMs":1586108344000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],"dstIndex":1151,"srcIndex":1401,"timestampMs":1586629712000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],"dstIndex":1155,"srcIndex":1401,"timestampMs":1586630579000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],"dstIndex":1156,"srcIndex":1401,"timestampMs":1586640176000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],"dstIndex":1159,"srcIndex":1401,"timestampMs":1586264143000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],"dstIndex":1160,"srcIndex":1401,"timestampMs":1586443674000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],"dstIndex":1165,"srcIndex":1401,"timestampMs":1586629689000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],"dstIndex":1166,"srcIndex":1401,"timestampMs":1586642724000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],"dstIndex":1168,"srcIndex":1401,"timestampMs":1586461703000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],"dstIndex":1169,"srcIndex":1401,"timestampMs":1586264058000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],"dstIndex":1171,"srcIndex":1401,"timestampMs":1586208446000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],"dstIndex":1172,"srcIndex":1401,"timestampMs":1586264565000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],"dstIndex":1173,"srcIndex":1401,"timestampMs":1586264365000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],"dstIndex":1175,"srcIndex":1401,"timestampMs":1586633972000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],"dstIndex":1176,"srcIndex":1401,"timestampMs":1586630527000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],"dstIndex":1177,"srcIndex":1401,"timestampMs":1586632841000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],"dstIndex":1178,"srcIndex":1401,"timestampMs":1586446829000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],"dstIndex":1179,"srcIndex":1401,"timestampMs":1586437704000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],"dstIndex":1181,"srcIndex":1401,"timestampMs":1586643749000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],"dstIndex":1184,"srcIndex":1401,"timestampMs":1586556200000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],"dstIndex":1185,"srcIndex":1401,"timestampMs":1586426157000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],"dstIndex":1186,"srcIndex":1401,"timestampMs":1586504576000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],"dstIndex":1190,"srcIndex":1401,"timestampMs":1586632115000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],"dstIndex":1191,"srcIndex":1401,"timestampMs":1586115022000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],"dstIndex":1192,"srcIndex":1401,"timestampMs":1586395769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],"dstIndex":1195,"srcIndex":1401,"timestampMs":1586428289000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],"dstIndex":1196,"srcIndex":1401,"timestampMs":1586635956000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],"dstIndex":1199,"srcIndex":1401,"timestampMs":1586566089000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],"dstIndex":1200,"srcIndex":1401,"timestampMs":1586637453000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],"dstIndex":1201,"srcIndex":1401,"timestampMs":1586209230000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],"dstIndex":1203,"srcIndex":1401,"timestampMs":1586619306000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],"dstIndex":1204,"srcIndex":1401,"timestampMs":1586635980000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],"dstIndex":1207,"srcIndex":1401,"timestampMs":1586440952000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],"dstIndex":1210,"srcIndex":1401,"timestampMs":1586425156000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],"dstIndex":1214,"srcIndex":1401,"timestampMs":1586633830000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],"dstIndex":1215,"srcIndex":1401,"timestampMs":1586631279000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],"dstIndex":1219,"srcIndex":1401,"timestampMs":1586439053000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],"dstIndex":1220,"srcIndex":1401,"timestampMs":1586645068000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],"dstIndex":1222,"srcIndex":1401,"timestampMs":1586461592000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],"dstIndex":1223,"srcIndex":1401,"timestampMs":1586426867000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],"dstIndex":1224,"srcIndex":1401,"timestampMs":1586659020000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],"dstIndex":1225,"srcIndex":1401,"timestampMs":1586462092000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],"dstIndex":1226,"srcIndex":1401,"timestampMs":1586445094000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],"dstIndex":1227,"srcIndex":1401,"timestampMs":1586659508000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],"dstIndex":1229,"srcIndex":1401,"timestampMs":1586461896000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],"dstIndex":1230,"srcIndex":1401,"timestampMs":1586640763000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],"dstIndex":1234,"srcIndex":1401,"timestampMs":1586442756000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],"dstIndex":1235,"srcIndex":1401,"timestampMs":1586656761000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],"dstIndex":1236,"srcIndex":1401,"timestampMs":1586639218000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],"dstIndex":1237,"srcIndex":1401,"timestampMs":1586431949000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],"dstIndex":1241,"srcIndex":1401,"timestampMs":1586425693000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],"dstIndex":1242,"srcIndex":1401,"timestampMs":1586646488000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],"dstIndex":1243,"srcIndex":1401,"timestampMs":1586657456000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],"dstIndex":1244,"srcIndex":1401,"timestampMs":1586109264000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],"dstIndex":1245,"srcIndex":1401,"timestampMs":1586395938000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],"dstIndex":1246,"srcIndex":1401,"timestampMs":1586443142000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],"dstIndex":1248,"srcIndex":1401,"timestampMs":1586612834000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],"dstIndex":1249,"srcIndex":1401,"timestampMs":1586443040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],"dstIndex":1251,"srcIndex":1401,"timestampMs":1586439553000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],"dstIndex":1252,"srcIndex":1401,"timestampMs":1586449851000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],"dstIndex":1254,"srcIndex":1401,"timestampMs":1586440769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],"dstIndex":1255,"srcIndex":1401,"timestampMs":1586638167000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],"dstIndex":1256,"srcIndex":1401,"timestampMs":1586442958000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],"dstIndex":1257,"srcIndex":1401,"timestampMs":1586443278000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],"dstIndex":1259,"srcIndex":1401,"timestampMs":1586108556000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],"dstIndex":1260,"srcIndex":1401,"timestampMs":1586632045000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],"dstIndex":1261,"srcIndex":1401,"timestampMs":1586644275000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],"dstIndex":1262,"srcIndex":1401,"timestampMs":1586439910000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],"dstIndex":1263,"srcIndex":1401,"timestampMs":1586635090000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],"dstIndex":1265,"srcIndex":1401,"timestampMs":1586761063000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],"dstIndex":1269,"srcIndex":1401,"timestampMs":1586425884000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],"dstIndex":1271,"srcIndex":1401,"timestampMs":1586208275000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],"dstIndex":1272,"srcIndex":1401,"timestampMs":1586641071000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],"dstIndex":1273,"srcIndex":1401,"timestampMs":1586446525000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],"dstIndex":1275,"srcIndex":1401,"timestampMs":1586607022000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],"dstIndex":1276,"srcIndex":1401,"timestampMs":1586457498000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],"dstIndex":1277,"srcIndex":1401,"timestampMs":1586656082000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],"dstIndex":1279,"srcIndex":1401,"timestampMs":1586639647000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],"dstIndex":1280,"srcIndex":1401,"timestampMs":1586396173000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],"dstIndex":1283,"srcIndex":1401,"timestampMs":1585184379000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],"dstIndex":1285,"srcIndex":1401,"timestampMs":1583846036000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],"dstIndex":1287,"srcIndex":1401,"timestampMs":1585184096000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],"dstIndex":1290,"srcIndex":1401,"timestampMs":1586119837000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],"dstIndex":1291,"srcIndex":1401,"timestampMs":1586119867000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],"dstIndex":1292,"srcIndex":1401,"timestampMs":1583841786000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],"dstIndex":1293,"srcIndex":1401,"timestampMs":1583855508000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],"dstIndex":1294,"srcIndex":1401,"timestampMs":1584736018000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],"dstIndex":1296,"srcIndex":1401,"timestampMs":1584727355000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],"dstIndex":1299,"srcIndex":1401,"timestampMs":1585132575000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],"dstIndex":1300,"srcIndex":1401,"timestampMs":1585128878000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],"dstIndex":1302,"srcIndex":1401,"timestampMs":1585126267000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],"dstIndex":1304,"srcIndex":1401,"timestampMs":1585126105000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],"dstIndex":1305,"srcIndex":1401,"timestampMs":1584722599000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],"dstIndex":1308,"srcIndex":1401,"timestampMs":1585142847000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],"dstIndex":1310,"srcIndex":1401,"timestampMs":1583707484000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],"dstIndex":1312,"srcIndex":1401,"timestampMs":1584468261000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],"dstIndex":1313,"srcIndex":1401,"timestampMs":1585184645000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],"dstIndex":1315,"srcIndex":1401,"timestampMs":1585134244000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],"dstIndex":1316,"srcIndex":1401,"timestampMs":1584727333000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","19"],"dstIndex":1323,"srcIndex":1401,"timestampMs":1586768126000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","2"],"dstIndex":1324,"srcIndex":1401,"timestampMs":1586269776000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","3"],"dstIndex":1330,"srcIndex":1401,"timestampMs":1586390052000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","4"],"dstIndex":1331,"srcIndex":1401,"timestampMs":1586390446000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","5"],"dstIndex":1332,"srcIndex":1401,"timestampMs":1586390871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","6"],"dstIndex":1333,"srcIndex":1401,"timestampMs":1586396494000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","8"],"dstIndex":1334,"srcIndex":1401,"timestampMs":1586435403000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","9"],"dstIndex":1335,"srcIndex":1401,"timestampMs":1586440155000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1357,"srcIndex":1401,"timestampMs":1586264552000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1358,"srcIndex":1401,"timestampMs":1586446688000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1359,"srcIndex":1401,"timestampMs":1586449916000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1360,"srcIndex":1401,"timestampMs":1586658580000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1364,"srcIndex":1401,"timestampMs":1586425681000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":1401,"timestampMs":1586103666000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1366,"srcIndex":1401,"timestampMs":1586104083000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","7","sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],"dstIndex":1391,"srcIndex":1401,"timestampMs":1586658808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1401,"timestampMs":1586787682000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],"dstIndex":1289,"srcIndex":1415,"timestampMs":1584727008000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],"dstIndex":1298,"srcIndex":1415,"timestampMs":1584733391000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],"dstIndex":1301,"srcIndex":1415,"timestampMs":1584729372000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","vntrp","6","sourcecred","github","PULL","aracred","website","16"],"dstIndex":1375,"srcIndex":1399,"timestampMs":1586987888000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],"dstIndex":215,"srcIndex":781,"timestampMs":1586666528000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],"dstIndex":262,"srcIndex":782,"timestampMs":1586706188000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],"dstIndex":263,"srcIndex":783,"timestampMs":1586709195000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],"dstIndex":483,"srcIndex":784,"timestampMs":1586710102000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],"dstIndex":577,"srcIndex":785,"timestampMs":1586709961000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],"dstIndex":254,"srcIndex":786,"timestampMs":1586921892000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],"dstIndex":268,"srcIndex":787,"timestampMs":1586930578000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],"dstIndex":283,"srcIndex":788,"timestampMs":1586920791000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],"dstIndex":293,"srcIndex":789,"timestampMs":1586921871000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],"dstIndex":296,"srcIndex":790,"timestampMs":1586920549000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],"dstIndex":298,"srcIndex":791,"timestampMs":1586839193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],"dstIndex":330,"srcIndex":792,"timestampMs":1586916947000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],"dstIndex":356,"srcIndex":793,"timestampMs":1586919065000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],"dstIndex":393,"srcIndex":794,"timestampMs":1586971104000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],"dstIndex":420,"srcIndex":795,"timestampMs":1586957209000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],"dstIndex":424,"srcIndex":796,"timestampMs":1586915756000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],"dstIndex":560,"srcIndex":797,"timestampMs":1586916992000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],"dstIndex":563,"srcIndex":798,"timestampMs":1586932748000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],"dstIndex":588,"srcIndex":799,"timestampMs":1586934527000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],"dstIndex":594,"srcIndex":800,"timestampMs":1587052319000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],"dstIndex":573,"srcIndex":801,"timestampMs":1587075097000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],"dstIndex":656,"srcIndex":802,"timestampMs":1586805309000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],"dstIndex":660,"srcIndex":803,"timestampMs":1586918718000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],"dstIndex":667,"srcIndex":804,"timestampMs":1586831849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],"dstIndex":678,"srcIndex":805,"timestampMs":1586977731000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],"dstIndex":679,"srcIndex":806,"timestampMs":1586921823000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],"dstIndex":691,"srcIndex":807,"timestampMs":1586960050000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],"dstIndex":690,"srcIndex":808,"timestampMs":1586933937000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],"dstIndex":733,"srcIndex":809,"timestampMs":1586832132000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],"dstIndex":719,"srcIndex":810,"timestampMs":1586958454000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],"dstIndex":224,"srcIndex":811,"timestampMs":1586730565000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],"dstIndex":218,"srcIndex":812,"timestampMs":1586643786000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],"dstIndex":233,"srcIndex":813,"timestampMs":1586664558000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],"dstIndex":251,"srcIndex":814,"timestampMs":1586566020000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],"dstIndex":253,"srcIndex":815,"timestampMs":1586710826000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],"dstIndex":260,"srcIndex":816,"timestampMs":1586727748000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],"dstIndex":241,"srcIndex":817,"timestampMs":1586570955000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],"dstIndex":285,"srcIndex":818,"timestampMs":1586662685000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],"dstIndex":291,"srcIndex":819,"timestampMs":1586127122000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],"dstIndex":295,"srcIndex":820,"timestampMs":1586658983000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],"dstIndex":299,"srcIndex":821,"timestampMs":1586566694000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],"dstIndex":302,"srcIndex":822,"timestampMs":1586656936000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],"dstIndex":303,"srcIndex":823,"timestampMs":1586797014000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],"dstIndex":325,"srcIndex":824,"timestampMs":1586727823000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],"dstIndex":331,"srcIndex":825,"timestampMs":1586103464000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],"dstIndex":310,"srcIndex":826,"timestampMs":1586633871000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],"dstIndex":368,"srcIndex":827,"timestampMs":1586647160000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],"dstIndex":373,"srcIndex":828,"timestampMs":1586660251000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],"dstIndex":382,"srcIndex":829,"timestampMs":1586649927000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],"dstIndex":394,"srcIndex":830,"timestampMs":1586855777000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],"dstIndex":402,"srcIndex":831,"timestampMs":1586571027000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],"dstIndex":412,"srcIndex":832,"timestampMs":1586644808000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],"dstIndex":413,"srcIndex":833,"timestampMs":1586650718000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],"dstIndex":429,"srcIndex":834,"timestampMs":1586103441000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],"dstIndex":431,"srcIndex":835,"timestampMs":1586568293000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],"dstIndex":433,"srcIndex":836,"timestampMs":1586646704000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],"dstIndex":436,"srcIndex":837,"timestampMs":1586663015000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],"dstIndex":458,"srcIndex":838,"timestampMs":1586639136000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],"dstIndex":474,"srcIndex":839,"timestampMs":1586663769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],"dstIndex":476,"srcIndex":840,"timestampMs":1586652307000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],"dstIndex":479,"srcIndex":841,"timestampMs":1586570353000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],"dstIndex":511,"srcIndex":842,"timestampMs":1586638395000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],"dstIndex":519,"srcIndex":843,"timestampMs":1586657067000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],"dstIndex":523,"srcIndex":844,"timestampMs":1586649206000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],"dstIndex":545,"srcIndex":845,"timestampMs":1586729040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],"dstIndex":548,"srcIndex":846,"timestampMs":1586567498000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],"dstIndex":554,"srcIndex":847,"timestampMs":1586855462000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],"dstIndex":532,"srcIndex":848,"timestampMs":1586568912000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],"dstIndex":533,"srcIndex":849,"timestampMs":1586640470000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],"dstIndex":538,"srcIndex":850,"timestampMs":1586111771000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],"dstIndex":556,"srcIndex":851,"timestampMs":1586569076000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],"dstIndex":559,"srcIndex":852,"timestampMs":1586648621000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],"dstIndex":601,"srcIndex":853,"timestampMs":1586111689000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],"dstIndex":606,"srcIndex":854,"timestampMs":1586651543000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],"dstIndex":627,"srcIndex":855,"timestampMs":1586661631000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],"dstIndex":628,"srcIndex":856,"timestampMs":1586739277000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],"dstIndex":620,"srcIndex":857,"timestampMs":1586644660000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],"dstIndex":623,"srcIndex":858,"timestampMs":1586792089000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],"dstIndex":642,"srcIndex":859,"timestampMs":1586645107000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],"dstIndex":657,"srcIndex":860,"timestampMs":1586656870000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],"dstIndex":668,"srcIndex":861,"timestampMs":1586790290000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],"dstIndex":649,"srcIndex":862,"timestampMs":1586571301000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],"dstIndex":672,"srcIndex":863,"timestampMs":1586565903000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],"dstIndex":677,"srcIndex":864,"timestampMs":1586633977000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],"dstIndex":683,"srcIndex":865,"timestampMs":1586645253000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],"dstIndex":700,"srcIndex":866,"timestampMs":1586567811000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],"dstIndex":701,"srcIndex":867,"timestampMs":1586664528000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],"dstIndex":689,"srcIndex":868,"timestampMs":1586645187000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],"dstIndex":711,"srcIndex":869,"timestampMs":1586874980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],"dstIndex":735,"srcIndex":870,"timestampMs":1586654110000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],"dstIndex":737,"srcIndex":871,"timestampMs":1586570850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjA3ZTBlNWYwMGUxOGUwMGExMjg5MmI0N2JkM2Y1Yjg3NDE4Mzc3ZDU="],"dstIndex":228,"srcIndex":872,"timestampMs":1584166244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],"dstIndex":212,"srcIndex":873,"timestampMs":1582978132000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],"dstIndex":213,"srcIndex":874,"timestampMs":1586104482000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyNDVhNDAwMmEzNWMyYWRjY2ZlZDFmNjhhNjc1YzMwYmE4NzFiYTU="],"dstIndex":214,"srcIndex":875,"timestampMs":1583453629000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjBlNDY4ODQzMTkxYWQzYTI0ZmY1YjgwM2IyZTM4OGExMmU4OGEyODk="],"dstIndex":235,"srcIndex":876,"timestampMs":1585678434000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],"dstIndex":249,"srcIndex":877,"timestampMs":1583619788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1YTgxMjdiYzU0MDJjNzIyNGJjNTkyZjg5MGE1YmQ3Zjc5M2M2YTU="],"dstIndex":250,"srcIndex":878,"timestampMs":1585354520000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],"dstIndex":258,"srcIndex":879,"timestampMs":1585275196000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjExZmNkMDlhMGNkZTA4YWYwOGI1YzVjOTUxZjU0YzE1MGNmNDdlYTE="],"dstIndex":240,"srcIndex":880,"timestampMs":1585246440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyMjJlNDliNDI2OWYxNWIyYzcxY2ZlNGI2MmIxMzMzYWJlZWE1ODE="],"dstIndex":242,"srcIndex":881,"timestampMs":1583367223000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyY2YwZjE2ZDQwNmYxNGMyNTk3YWJjMTMwYzRkMmJmYTk5MjdmMzI="],"dstIndex":243,"srcIndex":882,"timestampMs":1585807902000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyZGRkNGUzNTYwN2MwMTg0Yjg5OGM4OThlMjZlNDVjNjAxNzY0MmQ="],"dstIndex":244,"srcIndex":883,"timestampMs":1584727971000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzNjM0NDE0MzM3ZTczMGZiY2I0MDNlMjY1N2E4MDA3MzQ3ZGRkOGQ="],"dstIndex":247,"srcIndex":884,"timestampMs":1585268012000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzZmM1MGQyMmUyMzUzY2YyYmIzODk0OGNhZTRmYjVmYjU5MWNlNmM="],"dstIndex":248,"srcIndex":885,"timestampMs":1584490521000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFhNzkyOTQ2MmZjMzU0NDg0MDhmMGQ4NTRhNmM4Yzg5OGMyZGI5NGY="],"dstIndex":265,"srcIndex":886,"timestampMs":1584425424000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],"dstIndex":266,"srcIndex":887,"timestampMs":1583545099000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFjYWMxNWVjYWU1ZTYzNmZkNWQwNDlmYzU5OTNjY2QxMTMxMjZlNDE="],"dstIndex":267,"srcIndex":888,"timestampMs":1584404096000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFkYzRhMmMyMzUyNTA0M2E3YjZlMzJhNzk4MzdjYjZhNWE2MmZkOTc="],"dstIndex":269,"srcIndex":889,"timestampMs":1584987191000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFlZWQzOGM0Y2ViZDYzYWI2ZmM5NTM3NTY0YTUzMDRhODcwY2FhMGM="],"dstIndex":273,"srcIndex":890,"timestampMs":1585872826000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFmMzUwZWFkMjJjYjUwMzkzMmVjMzZiOWQyMWI3MzVlYjk3ZWIyNTY="],"dstIndex":274,"srcIndex":891,"timestampMs":1584231333000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI1YzE2YmI4NTgwMTI3OTE5NjAxOGI0NGVjMGRiMDgzNGZhZGM0YTI="],"dstIndex":284,"srcIndex":892,"timestampMs":1584079976000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI3YjJiZjNkN2RhODNlMDQyOTVhYTFjMjI5N2U1MGNlODE1N2Y0MzU="],"dstIndex":287,"srcIndex":893,"timestampMs":1584555406000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI4YjBlM2YyZDhmZDQyNTY5ZWI4MDNkMTA0MzVhYThjMGVkZjI4ZjQ="],"dstIndex":288,"srcIndex":894,"timestampMs":1585159980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],"dstIndex":275,"srcIndex":895,"timestampMs":1582941733000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],"dstIndex":277,"srcIndex":896,"timestampMs":1586104041000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],"dstIndex":280,"srcIndex":897,"timestampMs":1581915151000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],"dstIndex":281,"srcIndex":898,"timestampMs":1586106320000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJhMTIwNGI0NGY0NGQ2ZDkzY2Y5NTJlMTgwNGFlZjI1ZmZiZGQ3OGY="],"dstIndex":290,"srcIndex":899,"timestampMs":1585365876000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJkNDQxOTFhOTk2OTUxY2NiZWQwMDA5MjgwODk5NjE0ZDYzMTc0Yzk="],"dstIndex":301,"srcIndex":900,"timestampMs":1585276073000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmNDJhMmEzOTE2ZmU2ZWRlOTdmMWZhYzlhZGMxODk3ZmNiYWEyYmU="],"dstIndex":304,"srcIndex":901,"timestampMs":1585397520000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmYWQ5YWFiNjg5NzIwMWU2YmMzNTNiOTc0NmMwM2QxZTcyOGQ0MzM="],"dstIndex":305,"srcIndex":902,"timestampMs":1584274368000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM0NzIzOTYxMTk5NTY1OTM3NDkzODM0MDcxNjY1Yjg3MWE2MzJkNWQ="],"dstIndex":319,"srcIndex":903,"timestampMs":1584382440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM1YmYwODI5YzA2OGFhMjBkZTUxNDY2ZWExMThmNzU0NzcwN2RlMDA="],"dstIndex":320,"srcIndex":904,"timestampMs":1585894360000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2NDA2OGVjOGRiODZiMzc4ZDYzMGY1OTFkYTNhMDJkZTg3MDg3OTg="],"dstIndex":321,"srcIndex":905,"timestampMs":1585095460000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],"dstIndex":322,"srcIndex":906,"timestampMs":1581914566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":324,"srcIndex":907,"timestampMs":1581914856000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],"dstIndex":326,"srcIndex":908,"timestampMs":1581911765000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],"dstIndex":327,"srcIndex":909,"timestampMs":1586106153000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MWIzMmJmZGI1YWUzN2QyY2U0MmQzMjMxOWZiYWRkZTcyNjYzZjM="],"dstIndex":328,"srcIndex":910,"timestampMs":1583604631000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MmU2MDFkMzE3OTUwNmRmZTdlYzBhZDIwY2Q1ZjY3OTY5NmU2NmU="],"dstIndex":329,"srcIndex":911,"timestampMs":1583712856000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YjBhOTAyYzFjMTc1MTJhNTM2MzgwNTAzYTUwNmZjM2NhNjE1YmI="],"dstIndex":332,"srcIndex":912,"timestampMs":1585505534000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YzZkYWFhNWZjYTYzMDViOTA4Y2RkMjg4MTExMDdlYmE2YmNiZTM="],"dstIndex":333,"srcIndex":913,"timestampMs":1584058539000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwMDE0YzExODQxYzlhNjA1Y2M5NGQ1MTdlY2U2Yjg2N2FmZDhjZWY="],"dstIndex":306,"srcIndex":914,"timestampMs":1583172648000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwNzU4ZDA0YWE0ZGE5N2ZjMGFjZWQxZmEyMmNiZGVlNGE4MmM3OTI="],"dstIndex":307,"srcIndex":915,"timestampMs":1584857389000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwOWE4OTU4NmRhNWUyZDQ0YjQ4YTYwN2M5MzM0YWVmNmY2ZGIzZmI="],"dstIndex":308,"srcIndex":916,"timestampMs":1583928647000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxMWJmMjZhYTUyNjhhMDY3YjBiZmM4NzA4YTkyMmQyZmQzZDBhODE="],"dstIndex":312,"srcIndex":917,"timestampMs":1582959644000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxN2ZmYTE0NzFhMDE3OTAwN2I4N2Y5M2FhYzIyMjM2NjY0NDNkNDU="],"dstIndex":314,"srcIndex":918,"timestampMs":1584965374000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],"dstIndex":337,"srcIndex":919,"timestampMs":1583124213000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNDg3MWMwOWI2NzQ5OGUzMTU3NWI4YWFhOWMwOTQ0M2QxNDJhMDM="],"dstIndex":338,"srcIndex":920,"timestampMs":1584511968000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],"dstIndex":339,"srcIndex":921,"timestampMs":1586105522000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiOGU0ZjU0ODQ1Mzg4ODUxMjkzYjI2MDUzZjRkZjY1YjRkYzk4ZDE="],"dstIndex":340,"srcIndex":922,"timestampMs":1583280857000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiYzk5MzQ4MzRiOGE2NTI5MTQzOWNiYmEyZGFmMDYxNDQ4ZTMwZmU="],"dstIndex":341,"srcIndex":923,"timestampMs":1584101474000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNlNWUxNDQ1N2ZhMTQzNDI1ZDI2NGE0ZmE5NDE1OTFkMTk3MzBjZTM="],"dstIndex":347,"srcIndex":924,"timestampMs":1583086481000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNmNDdmMDc3MjNiOTdmMDMxMWYzMmI3OGRhOTkzNThkMmM2YWZmYjQ="],"dstIndex":349,"srcIndex":925,"timestampMs":1583259010000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Y2YwZmJiYTE4YmYzOTJhNDQ5NjJmYWVkMWUxMzAwZWQ2ZmE0NTk="],"dstIndex":360,"srcIndex":926,"timestampMs":1585548726000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Yzg0NDQ3NWM1ZTJiZWI1YWNkZWZjN2U0Y2Q1NGU5MGQyZDg0ZTI="],"dstIndex":359,"srcIndex":927,"timestampMs":1585700008000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ2MzllYzhkYmExMmU4YzdkM2IwYmY1ODliOGM4YTA5YzUyMmFlNDc="],"dstIndex":365,"srcIndex":928,"timestampMs":1585484037000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ4ZTViNDQ2N2M2MTA3MDQwYzEwN2Q1NWJjMmZiZTA3YTU3ZWEzYTA="],"dstIndex":367,"srcIndex":929,"timestampMs":1585311128000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],"dstIndex":351,"srcIndex":930,"timestampMs":1583107086000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],"dstIndex":352,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxOWQzOWQ4N2ViMzE5NjVhOGY1Nzc1MDc1Y2I4MGJlNmE1N2FiZDY="],"dstIndex":353,"srcIndex":932,"timestampMs":1585440813000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],"dstIndex":354,"srcIndex":933,"timestampMs":1586112503000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQzMjA0MmY2Zjk2NWJiMTEzYWQ1MDk1MGNmZGJiODJjNDRmMGRjNTk="],"dstIndex":355,"srcIndex":934,"timestampMs":1583129436000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRhOTA3MzQ4MzJhZTRhZDMyOGZjMDYyNzEyZTJkZWNhODhkN2RjYzQ="],"dstIndex":370,"srcIndex":935,"timestampMs":1585224759000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRiNGM5ZWE5NzA1NDY1ZDM5ZjMzYjM5ZWEzOTgxOWM5Yzc3YWE3OGI="],"dstIndex":372,"srcIndex":936,"timestampMs":1585980739000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],"dstIndex":374,"srcIndex":937,"timestampMs":1583096048000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],"dstIndex":377,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU1NGM5NjQzOGZkYmVlMjAzMWI4YjVhYzE2YWEyZDZkYjZhN2Y0MGY="],"dstIndex":388,"srcIndex":939,"timestampMs":1584209897000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU2MTcyYjYwODc0MDBmYTgxYzEzZjM5ZjM3YjIzZWMxMWRlM2M5YjI="],"dstIndex":389,"srcIndex":940,"timestampMs":1585937519000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],"dstIndex":391,"srcIndex":941,"timestampMs":1586104299000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3ODU0NGQwNTU3NjE0YzAwNzgwMDg5ZmE5ZjgzNDM5NTBmOTc3ZmM="],"dstIndex":392,"srcIndex":942,"timestampMs":1585613634000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwOWQ4YzAzYjFhNjcxMjlhM2U5ODA3M2RkMjRmOTM3MjNjZGZlNDE="],"dstIndex":379,"srcIndex":943,"timestampMs":1585656841000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],"dstIndex":380,"srcIndex":944,"timestampMs":1586109721000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUxMzA4NjIxZWMyODQzMzUwODUyZmQzMWY4YzBhYTA4ZDZkNmE4MDk="],"dstIndex":381,"srcIndex":945,"timestampMs":1585591899000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVhZmI0ZTA4MTcwYzFiZDJlOWY1ZmI0ZGQ0MmM2ZWY1ZTJkMjM4Nzg="],"dstIndex":396,"srcIndex":946,"timestampMs":1585116577000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjViODVhNzQwNTQ4OWY3MjBlZDBiOWNiNTE1MGMyNjE5ZDQ1YzllOWQ="],"dstIndex":397,"srcIndex":947,"timestampMs":1583820607000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjNjIxZWU0YzY0NDcxM2EyNjI3YWZiZmVkNzQ1NDgyZmU1NTI1ZWY="],"dstIndex":398,"srcIndex":948,"timestampMs":1584619902000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjOGU2OTVhZDM0MGU2NWU4NTg2MmRjODIwMmQxN2U3M2Q5NWJjM2U="],"dstIndex":399,"srcIndex":949,"timestampMs":1584943893000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],"dstIndex":416,"srcIndex":950,"timestampMs":1583122040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1NTI0MDk3ZWQ1ZGUzYTgxNWU5ODliZDQyMGUzODE3N2ZlNzBiY2E="],"dstIndex":417,"srcIndex":951,"timestampMs":1584187884000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1ZDJjYTM0M2M1MTAyMDQ3ODA5NGJhODdiNWRiNGFmNjQ2NDc0MWE="],"dstIndex":418,"srcIndex":952,"timestampMs":1584123231000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY3ZDQ2MjI5NDg5MzA5MDM1Yjk2ODM5MWU2ZDE0NjExZWJkNWMzZmY="],"dstIndex":422,"srcIndex":953,"timestampMs":1585008772000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY5ZDFmYjc5Yjk2ODBmN2VjNWU4NTU0ZjJhOGMwZjgxZDc0ZDlhOWM="],"dstIndex":425,"srcIndex":954,"timestampMs":1584339043000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjYzNmVjNmExNjA2NGM4YzMzZWI0NzYzMzc1ZDUzYWM1ZDhiZDFhMTA="],"dstIndex":415,"srcIndex":955,"timestampMs":1583669536000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZhOGJmY2EwYzkzNmYzMDRjYzlhMmEzMzk5Njc2YmU0NmFlYTk5NjA="],"dstIndex":426,"srcIndex":956,"timestampMs":1584252719000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZiOTY5OThlN2MyZjhjZTUyZGMwOWViYzllYTUyNGQwN2RlYmUzOGU="],"dstIndex":427,"srcIndex":957,"timestampMs":1584360709000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZkNTFlZTgzNmUxMGU5ZDdiMzgwMDZmNWU0OTY2NTVhZTE4YWQzNjg="],"dstIndex":432,"srcIndex":958,"timestampMs":1585915944000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],"dstIndex":442,"srcIndex":959,"timestampMs":1585275681000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc4NjAxMzc2NTIyYzMyOWMwOTQwNzU0MDIwZmY0NjU0ZmZlOTM3Yjg="],"dstIndex":448,"srcIndex":960,"timestampMs":1585462336000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc5MzFjZjIwYjUxNDZiY2E2OGU1MWQyNmNkZWJhZGU5YTFkM2E2NjI="],"dstIndex":450,"srcIndex":961,"timestampMs":1583755944000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjcxZTA4NDY0YTY1NGIzN2IwNWZlNTM0OTY0OWEwM2Y0NTc5MzNmYTE="],"dstIndex":439,"srcIndex":962,"timestampMs":1584663156000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiNmQ2MTY4N2U1N2QxNWE0NWQxOTViMWVkYjU2NzQ1MWEzMGRiMjk="],"dstIndex":455,"srcIndex":963,"timestampMs":1584598257000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],"dstIndex":456,"srcIndex":964,"timestampMs":1586106389000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkMWY2ZTJkMTNhYjQ2NzcxOWYyODc4MDJiMTZlNzk5ZGVlYjVlMjY="],"dstIndex":459,"srcIndex":965,"timestampMs":1585332629000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkYzQ1MTRjZDQxNWNjOTI2ODI3ZmUwMmNiMjg5MWI4ZDZiODBlNWQ="],"dstIndex":461,"srcIndex":966,"timestampMs":1583799279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],"dstIndex":462,"srcIndex":967,"timestampMs":1581898623000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdmZjc3ODI0ODliNzg5NDE0OWNjNWYyMTFkOWRkYWZjZjg0OTE4ZTk="],"dstIndex":466,"srcIndex":968,"timestampMs":1583496697000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],"dstIndex":472,"srcIndex":969,"timestampMs":1583106975000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg1YjZlOGNjYTJkNmJjNTcwOTQ0OTYwNWM4YWM2NDVmZTc0Zjc4ZDU="],"dstIndex":473,"srcIndex":970,"timestampMs":1585829522000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg2MTllZTI0NTJlN2JmMTA5MTY5MDE3YWNjOTY4YmJhM2U2ZTEyOWQ="],"dstIndex":475,"srcIndex":971,"timestampMs":1584706303000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],"dstIndex":477,"srcIndex":972,"timestampMs":1583542889000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YTE1YjU3NzJkMWRjMjE3MzcxODFkN2RkYTI2Njk1YTBkZmVjY2E="],"dstIndex":480,"srcIndex":973,"timestampMs":1585375849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YjMzN2JlZjI5NmRmMTBhOTRjM2IzOGNlMWUyZWY0Mzk2ODg2ZDU="],"dstIndex":481,"srcIndex":974,"timestampMs":1583431778000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],"dstIndex":467,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],"dstIndex":468,"srcIndex":976,"timestampMs":1583014162000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxN2NmODk0MGNiODhiYTc5MGM2MDIxY2U1NGJjYjAxOGFhMGNlYjY="],"dstIndex":469,"srcIndex":977,"timestampMs":1583540024000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxYTY3ZjQ4MTIwNDQ5Mjk0ZDNhYjk0Y2M3Njc3NTVlMGJmMzc4NGU="],"dstIndex":470,"srcIndex":978,"timestampMs":1586023930000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgyNzVkMWI1ZjNhNzc0MjY0ZDU4MzNjMjNkODk1ODM0Mjk0MDA5MmY="],"dstIndex":471,"srcIndex":979,"timestampMs":1585570245000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkOTYwZjA0MTVlOGNlOGE0NWQ3MDA1YzRlZTM5OWRlNjcyMTQ0ZDQ="],"dstIndex":490,"srcIndex":980,"timestampMs":1583410286000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkYTMyYmIyNDM2MjE5ZTNhNTU2MzFlNDI2YTcxZDNkNDVkMjdjMzY="],"dstIndex":491,"srcIndex":981,"timestampMs":1585073567000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":493,"srcIndex":982,"timestampMs":1581902687000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],"dstIndex":495,"srcIndex":983,"timestampMs":1582941505000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk0ZTUxZDlhODNjZDY3YjRhZDgyYzY1MjkyMTJlNzJhYWM4NGFmZTc="],"dstIndex":506,"srcIndex":984,"timestampMs":1583014460000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk1ZDU4ODRiMTJhNWE1ZjFkMTg1NTIyNzdlMzc1OTdmYjYwNDgyOTc="],"dstIndex":507,"srcIndex":985,"timestampMs":1585289369000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk2MjBmYjhiMDM4NjE2MGUzNjRlMzhkNjNhZDNmZWRlNGExODJjZTM="],"dstIndex":508,"srcIndex":986,"timestampMs":1584814190000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk3OGYwNTJiNjNhYTIwOWVkODEwN2RhZDcxYzU5YTQ0NjQzZTc0YmE="],"dstIndex":512,"srcIndex":987,"timestampMs":1586002264000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk4Zjc2YzRmYTkzNGEzZTA4ZGM0YWJiOGMxOTY5N2M3ZWQxZGE4MWM="],"dstIndex":514,"srcIndex":988,"timestampMs":1584015081000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjkzNmNkMjJmZTE1OWJmZDdmOGJlZDUzOTc4M2Y1MmM3NjhmMjBhOWY="],"dstIndex":504,"srcIndex":989,"timestampMs":1584901288000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhNWI0ODllMWJiY2MzMDZjZTRjNjM2MmFhNWFhZGZmNjBlNmEyN2Y="],"dstIndex":515,"srcIndex":990,"timestampMs":1585851193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhODY2NDI0Zjg0YjQ2OTc4M2RmZTU1OWE1MTBmZmM5M2UwMGQ2NGI="],"dstIndex":516,"srcIndex":991,"timestampMs":1585051794000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhYTBlY2Q2ZjUzN2MwZjNkNWY2ZjIwMGM3YzU0NDhkZGMyOGM5ZGQ="],"dstIndex":517,"srcIndex":992,"timestampMs":1583864016000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkMGNhY2YyOWVlNWY2NjY4NDI2YzBkZDljY2ExMmFkN2FmOTA2YWE="],"dstIndex":520,"srcIndex":993,"timestampMs":1583561475000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkODU2MGY3YTE3MGNjMmMwOTM3YmE3OTgwZGJjYjQ2NmFkMzE0MGY="],"dstIndex":521,"srcIndex":994,"timestampMs":1584922566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjllZTZkMWIzYjBkN2IwNmMzYWJlYjdiNDk2ZTgzMDY4M2M1NGY2ZDQ="],"dstIndex":522,"srcIndex":995,"timestampMs":1584836115000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],"dstIndex":541,"srcIndex":996,"timestampMs":1586103659000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],"dstIndex":543,"srcIndex":997,"timestampMs":1581900781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE2ODUzYTgzOWIxMTAxYjA3N2UzYjgwYzMxMDZkYTAxYmUyODA3ZWE="],"dstIndex":546,"srcIndex":998,"timestampMs":1584749757000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],"dstIndex":549,"srcIndex":999,"timestampMs":1583124366000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":552,"srcIndex":1000,"timestampMs":1582959276000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE5OTlkNmJkMzVkZjE5OGJhYjYyNTI0MDQzMjVkN2E5NDQ5ODM0MTA="],"dstIndex":555,"srcIndex":1001,"timestampMs":1583691175000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEwZmI5YjgyMmJhYWI5ZTBmY2U4NDMzYmUzZGU3ZDQyM2UxYjRkZDY="],"dstIndex":530,"srcIndex":1002,"timestampMs":1583064673000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyNTQ3ZWI3ZDE4MzVlMDUwYTg5NzE3MmI1NjNjY2I2OWI3Njk3MTE="],"dstIndex":534,"srcIndex":1003,"timestampMs":1584684556000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyZmQ3ZTA3Njc5NWM2MmEwNzUwMWQ1ZmI3MWMwMzk5OWNjNGIxNDU="],"dstIndex":535,"srcIndex":1004,"timestampMs":1583842226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEzN2E0ODI1NmQ5OWE2M2ZjZjBhNjc4ZWJiYjM0Y2NhMGZkOTVmMjM="],"dstIndex":537,"srcIndex":1005,"timestampMs":1585743137000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFlNjU2YTFhOTllOWE4Y2MyMjdjMTg3MTU0MTIzNTcxZDlkMTY4NzI="],"dstIndex":561,"srcIndex":1006,"timestampMs":1583107978000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],"dstIndex":564,"srcIndex":1007,"timestampMs":1586105574000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI0Mzk0MjEzMzAwZmY0ZDcyZWJhY2E3YzYzY2Y5MTlkZjMwNmVhZDM="],"dstIndex":576,"srcIndex":1008,"timestampMs":1583096222000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1YWQ1ZWVhNDAxYjRmNDE1YjlkYTQ0NjE4N2I4OTNhN2NlZWUxYjU="],"dstIndex":581,"srcIndex":1009,"timestampMs":1585030166000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1ZGYzYzhjZDg1Y2JlNDM2MDZmMjA1MmYwMDYzMWRiZmNjYTQyZDk="],"dstIndex":582,"srcIndex":1010,"timestampMs":1585764755000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2Mzg4ZGI1ZWI2YTZmZWQ1NmViYTY2MWRiMmI3NjFjY2RkZmQ2ZmM="],"dstIndex":584,"srcIndex":1011,"timestampMs":1583993566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2NzA1NzRiZDJiY2YxZTBhNzFjMzZiOTQ0N2IwZDVmZmUyMmI5YWE="],"dstIndex":585,"srcIndex":1012,"timestampMs":1583972111000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],"dstIndex":586,"srcIndex":1013,"timestampMs":1583124346000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],"dstIndex":587,"srcIndex":1014,"timestampMs":1586106281000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4MzE5ZDM2MTZjN2Q1ZTZjMmFmODA4N2VhNjNlOWZhYjFhNzNjMDI="],"dstIndex":590,"srcIndex":1015,"timestampMs":1583619966000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NDJlZDNlYWY2ODc1MTNhMGQ5MGVhZmRmYjBhOWVjNmZjNTg4MmU="],"dstIndex":591,"srcIndex":1016,"timestampMs":1583302409000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NWMwYjVhYjk4MzU3YzZkYzNhZjY5Mjk3ZTZhNzk1ODUxYzg5ZjQ="],"dstIndex":593,"srcIndex":1017,"timestampMs":1581903422000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],"dstIndex":595,"srcIndex":1018,"timestampMs":1585361688000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI5MzA5ZTRkNDQyODlhZjgzNDFmNDMxMDNiN2JlMTk1ZGY1OTk4YjA="],"dstIndex":596,"srcIndex":1019,"timestampMs":1583778483000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIwMzhmMWNhOWY5YjZhNWE1NDkzNWMxYTczMGQyZTMyZjgyMjBjZTc="],"dstIndex":565,"srcIndex":1020,"timestampMs":1583583119000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIxZTI0MTg1YzU2N2M0ZjlhNjA5NTk1NTllNmZmMWFjN2RiYjYyNzk="],"dstIndex":567,"srcIndex":1021,"timestampMs":1583043139000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],"dstIndex":571,"srcIndex":1022,"timestampMs":1586104090000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzZjY2N2M3NDZkNTRmZDFlN2VmNDFkNGU5MTE4NmZmNzA1Y2IwMWE="],"dstIndex":574,"srcIndex":1023,"timestampMs":1583237458000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhMDhmMjFmMzhmZWYyNWU2NWEwMDZlNGFmMDA1OTFmNjIzY2JhODg="],"dstIndex":597,"srcIndex":1024,"timestampMs":1583194441000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhNjkzZjVmMTE2Y2YxOWQ5YThiZjFiZjU1YTRlYzhjNmMxOTI5Yjg="],"dstIndex":598,"srcIndex":1025,"timestampMs":1583215867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":603,"srcIndex":1026,"timestampMs":1581914667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiYzU0ZTQ5NDcxOTBkYThjMzdkNzY3ZTAwNDMzOWI2MmZiMzRhYWM="],"dstIndex":602,"srcIndex":1027,"timestampMs":1585527211000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":607,"srcIndex":1028,"timestampMs":1581903056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkZDFkOTUwOTVmYzk5MTg2NzU0NTAyYzk2YzFlY2JmZjIxNmZiMTQ="],"dstIndex":608,"srcIndex":1029,"timestampMs":1583734323000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJmZDMyMWE1YzM4NGRjN2ZhYjk5MDYyYmNjMzQ5MTcwNTMwM2ExNzY="],"dstIndex":612,"srcIndex":1030,"timestampMs":1586105832000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0NjFiYjQwMzY2YmU2MTI0Y2M4ZTA5YWYyNTc0MWM1ZTY1YjFhNmE="],"dstIndex":624,"srcIndex":1031,"timestampMs":1583950431000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0YWUyYjk1ZWRkMjIzYTJiMzI2OWY0OTEzYzVhMjM3ZTc1NTcxOTQ="],"dstIndex":626,"srcIndex":1032,"timestampMs":1583345470000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1MTlhMDkxNmYyMzg2NmM5OWMwYzc2YmFkMzNkZWMwOWM0YTEwNTI="],"dstIndex":629,"srcIndex":1033,"timestampMs":1586045554000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1ZWVhYzk0ODU2OWEwNjYyMjc0MGQwYjkzNDBjNjIyZGRiNDY5ZDM="],"dstIndex":631,"srcIndex":1034,"timestampMs":1584771018000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM2MWJjNzkxODMzNzRlN2UzN2E4NDU2ZmY0N2Y2NjJhMmJjMjFiYWY="],"dstIndex":632,"srcIndex":1035,"timestampMs":1585959190000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM3YWNlZjhhNTY2NGQzZGQ1NzA1OWU4Y2M0NDdjNGYxZGJlMjY5ZGI="],"dstIndex":634,"srcIndex":1036,"timestampMs":1584144938000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":636,"srcIndex":1037,"timestampMs":1582941407000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],"dstIndex":613,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMzNzgxOGRjNTRkYjMwMmMxYmIyYmZlOTkzMTIwODRjYjY0NTIyNjM="],"dstIndex":622,"srcIndex":1039,"timestampMs":1583125241000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNjNGU0ZmY5NGIyZmU3OGQ4NzI3OTYzYjQyYmMxYzMzYmZkMmU5MzI="],"dstIndex":640,"srcIndex":1040,"timestampMs":1585786422000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmMzU5ZjU2YTllN2Q5ZTM4MGE3MjlmZTY0ZjBmZDllMDY4NTNjMjE="],"dstIndex":644,"srcIndex":1041,"timestampMs":1583647930000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmNDE2MzYzNzlhY2Q1ZmI5ZTI3YWY2MjcyN2ZkZjY0YTExMWQ5NTk="],"dstIndex":645,"srcIndex":1042,"timestampMs":1583388676000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ0NTU1NTU0ZDM0N2IyMzg1YWM5NmE1MzBmNTYyODQ5MWMyYzcyNGM="],"dstIndex":655,"srcIndex":1043,"timestampMs":1585202969000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ1OTNiMTI2YWY1Y2NkZTMyZmU2MTBmYmMzOTlmOTIzM2M0ZmNkY2Y="],"dstIndex":659,"srcIndex":1044,"timestampMs":1583021626000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ3ZTU3NjNjMzc1ODIwNjdkOTMwZTUzNzE4MjczZWVmNjc5OTdkYjc="],"dstIndex":663,"srcIndex":1045,"timestampMs":1583885686000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ4MDM0YzFhOTk3YTZmMzc2MmViNjRhYmVmZDM5ODNjYTVjMTdiMjc="],"dstIndex":664,"srcIndex":1046,"timestampMs":1584317721000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ5YjQwZTA3MWMyZjIxNmI4ZmI0Y2ViY2U3ODhlYzFiZjg5MmFjN2M="],"dstIndex":669,"srcIndex":1047,"timestampMs":1584792698000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],"dstIndex":647,"srcIndex":1048,"timestampMs":1586103656000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQyMTBkNmYzODc4NjBiNDczNjE5MzYyNDEyNWVjNWUxYjhmNWM4OGE="],"dstIndex":650,"srcIndex":1049,"timestampMs":1584447107000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],"dstIndex":680,"srcIndex":1050,"timestampMs":1581898638000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmMzkwNTNmMzdiZjkzODIzY2Q0MzY0YjgxOWNhMTI4OWU0NDgxYjE="],"dstIndex":682,"srcIndex":1051,"timestampMs":1585181592000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmOWY3NDIzZjBlMThhNTc4MzUzMjRiNDU5ZmUyNDNkM2YzZTU1YWI="],"dstIndex":684,"srcIndex":1052,"timestampMs":1586088576000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],"dstIndex":694,"srcIndex":1053,"timestampMs":1583124164000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU2M2VjNzBjM2I3NWRlNTM5ZTg2ZmFmNzdjOWU0NGY4Mzc1M2NiMWY="],"dstIndex":695,"srcIndex":1054,"timestampMs":1585635193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwMGQyZmJjODk1OWExYThkZDY5MDc2MjdjMGYxMzczMWRkNWI3ZTQ="],"dstIndex":685,"srcIndex":1055,"timestampMs":1583545284000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],"dstIndex":686,"srcIndex":1056,"timestampMs":1582941750000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],"dstIndex":702,"srcIndex":1057,"timestampMs":1583592448000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmViZmNhMjMwOTg3NzI2ZmI2ZDBjNzRjZGJhMWU3MzQ2YjVkMDgzNDU="],"dstIndex":703,"srcIndex":1058,"timestampMs":1583626507000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjNTQzNmI2OGVjMzZjZWE0MWY5MjNhZTJkOTU4NDFiN2RiZTY3OGE="],"dstIndex":704,"srcIndex":1059,"timestampMs":1585721531000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjYTFjOGU0ZmI5ODk3Zjg2ZTcxOTJmMTc0MWQwMDUwOTcwN2E0MmQ="],"dstIndex":705,"srcIndex":1060,"timestampMs":1583151030000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],"dstIndex":709,"srcIndex":1061,"timestampMs":1585365677000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVmMWE0ZTFkM2JmNzBmOWRhY2NlYmRmMzAyOGVhOGY0NzZjMjY4OTk="],"dstIndex":713,"srcIndex":1062,"timestampMs":1583518372000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY2YTg4YjY5NzI4ZmEyY2JjOTMwNGE5ZDNhNjE5M2FmYTlhY2ExN2M="],"dstIndex":727,"srcIndex":1063,"timestampMs":1585419164000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ODY2MGNlMDkxMzJkNjEyN2FiOTYwYTBmZGI5ZjE5ZjJiNzY4OTM="],"dstIndex":729,"srcIndex":1064,"timestampMs":1584036899000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3OTI5NGIxNGU5MDBjYTkyN2IzZTllNWNmNTE5NzI4MTRjZDJjNTA="],"dstIndex":730,"srcIndex":1065,"timestampMs":1583323781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ZWNkYzY2MTdjZTc3NTc0Njc2NjU0YTg0ZjU4MzEzYWQ5Zjg0YTg="],"dstIndex":731,"srcIndex":1066,"timestampMs":1583907011000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY4MTllYzUyMGU3NTRjNGFkYjQ2ZDEzZDAxMjZmYTQ4ZjAzYjBkYWM="],"dstIndex":732,"srcIndex":1067,"timestampMs":1585361881000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY5NmJjM2Y2NjEwNmVkNDM0MWQ2NzRiNWEzN2ExZmNlODAzNWM5MjI="],"dstIndex":734,"srcIndex":1068,"timestampMs":1583475056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYxYjFhMzQ4NTE0YThkODg3NTBjMjc3NGEzNzlhMDBiODVlYTA4MTA="],"dstIndex":718,"srcIndex":1069,"timestampMs":1584295996000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYzZDA3NmY2Nzc5N2Y2YzM0OTFlMDQ2YTVkY2RjZTAzNzI4OTBkZTU="],"dstIndex":722,"srcIndex":1070,"timestampMs":1585138236000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmZlMzNkYWI3NGEwNWY0M2QxZTI0MDQ0ZGM0NDEzZmYwZTcyYWFkNTA="],"dstIndex":742,"srcIndex":1071,"timestampMs":1584641608000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],"dstIndex":223,"srcIndex":1072,"timestampMs":1586425053000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],"dstIndex":225,"srcIndex":1073,"timestampMs":1586114858000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],"dstIndex":226,"srcIndex":1074,"timestampMs":1586658939000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],"dstIndex":229,"srcIndex":1075,"timestampMs":1586425366000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],"dstIndex":210,"srcIndex":1076,"timestampMs":1586377189000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],"dstIndex":211,"srcIndex":1077,"timestampMs":1586109857000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAyZjRkMzYyM2FlNGU4OWZhNjIzMjQ3N2Q5N2ZlMzJiMjdhYWU3YzU="],"dstIndex":216,"srcIndex":1078,"timestampMs":1586283283000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],"dstIndex":219,"srcIndex":1079,"timestampMs":1586439223000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzNjA0YTdkOGY5YTZmNDg4Zjc5OTAzMDllNzAwNjZhMTI2MDQ4M2Q="],"dstIndex":220,"srcIndex":1080,"timestampMs":1586434473000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzODhmYjAyMTlhNzQ2MGU2NzI2YjM0ODM1YzY3MDk4NmJlNTQwNmM="],"dstIndex":221,"srcIndex":1081,"timestampMs":1586757849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],"dstIndex":222,"srcIndex":1082,"timestampMs":1586430244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],"dstIndex":230,"srcIndex":1083,"timestampMs":1586430128000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBiMzUxNDEyY2ZhOTJjOGVkYWJlYTE0NDlkYTE2YTdhMjEyOGM4MWY="],"dstIndex":231,"srcIndex":1084,"timestampMs":1586822727000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],"dstIndex":234,"srcIndex":1085,"timestampMs":1586638157000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBlOWRiZDg0MDZiMjU2ZjZiNWU1NTNkNjc2OTY4M2E1NTkwOWFiODQ="],"dstIndex":237,"srcIndex":1086,"timestampMs":1586462221000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE2MzA5ZGE2Yzc4NmVmZTlkYzFmNzQ1YzYxYWQ0ZjJjMmFkNjFkNzY="],"dstIndex":252,"srcIndex":1087,"timestampMs":1586369661000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":255,"srcIndex":1088,"timestampMs":1586535321000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],"dstIndex":257,"srcIndex":1089,"timestampMs":1586436690000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],"dstIndex":259,"srcIndex":1090,"timestampMs":1586760993000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE5MWU3M2U0MjlhYjE5M2U1OTE4OWY0NGIzNjNkNjk2MTNlZTAzMTU="],"dstIndex":261,"srcIndex":1091,"timestampMs":1586607165000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjExYTQ1ZWIxODhhNzU2ZTMxZjJlY2UwYWZjZjEwYWZiNWUzMDExMmY="],"dstIndex":239,"srcIndex":1092,"timestampMs":1586887494000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],"dstIndex":245,"srcIndex":1093,"timestampMs":1586425839000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],"dstIndex":271,"srcIndex":1094,"timestampMs":1586994934000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],"dstIndex":272,"srcIndex":1095,"timestampMs":1586475320000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI3NWQxNjNlZmRkODEyY2RjZDZhZTJmNWE4YWZmMWJhYjNiZWQwZTc="],"dstIndex":286,"srcIndex":1096,"timestampMs":1586211419000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI5ZDlhOGVmMGQ3MzhkOGIxYmRhZTg3M2M4OTJhZjQxODU4Y2RhMGE="],"dstIndex":289,"srcIndex":1097,"timestampMs":1586635242000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],"dstIndex":276,"srcIndex":1098,"timestampMs":1586636313000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],"dstIndex":278,"srcIndex":1099,"timestampMs":1586972808000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],"dstIndex":279,"srcIndex":1100,"timestampMs":1586436960000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],"dstIndex":282,"srcIndex":1101,"timestampMs":1586645851000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],"dstIndex":292,"srcIndex":1102,"timestampMs":1586114997000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],"dstIndex":294,"srcIndex":1103,"timestampMs":1586436983000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],"dstIndex":297,"srcIndex":1104,"timestampMs":1586439726000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJkMjkwYjIyODhhMTRkNDk0ZjBmYzE4YmZhYzg4MmVmNmM2MTdlNmE="],"dstIndex":300,"srcIndex":1105,"timestampMs":1586844255000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM2ZWQ5NWRkZjgzNDliYTNkNTU3YmZiYmVmMDY2YjI1NTliNDMyYTM="],"dstIndex":323,"srcIndex":1106,"timestampMs":1586718195000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],"dstIndex":334,"srcIndex":1107,"timestampMs":1587058277000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],"dstIndex":309,"srcIndex":1108,"timestampMs":1587049226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],"dstIndex":311,"srcIndex":1109,"timestampMs":1586430447000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],"dstIndex":313,"srcIndex":1110,"timestampMs":1586438375000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],"dstIndex":315,"srcIndex":1111,"timestampMs":1586710226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],"dstIndex":316,"srcIndex":1112,"timestampMs":1586110667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],"dstIndex":318,"srcIndex":1113,"timestampMs":1586718047000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],"dstIndex":335,"srcIndex":1114,"timestampMs":1586439440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],"dstIndex":336,"srcIndex":1115,"timestampMs":1586658493000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNTI5MjM5NDA5NjllMDU5NGM5NjkzZDI3ZTgwYmY4MWU0OWJkZmI="],"dstIndex":342,"srcIndex":1116,"timestampMs":1586211419000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNzE2Y2EzOWEzMDVlNWQ4YTliMmE1YWE0NjYwMzk0NjZkMDVhMzg="],"dstIndex":343,"srcIndex":1117,"timestampMs":1586952325000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],"dstIndex":344,"srcIndex":1118,"timestampMs":1586641745000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNlMzc2MDAwN2M5ZDBhOTQ3MWY1ZjBkNDI5YWM0YzMwYjFmYjU0ZjY="],"dstIndex":346,"srcIndex":1119,"timestampMs":1586704923000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],"dstIndex":357,"srcIndex":1120,"timestampMs":1586796945000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzcyMzUzZjhkOTUwMjI2ZDkwOWIxMjc3OGNiZWQ0ZGYzZWQ4NjY="],"dstIndex":358,"srcIndex":1121,"timestampMs":1586348063000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],"dstIndex":361,"srcIndex":1122,"timestampMs":1586446367000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],"dstIndex":362,"srcIndex":1123,"timestampMs":1586978574000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZjI1ZWE0ZWI2NDY0MjdjMDZlNThiN2U0Y2UyYzRjZDM4NWMzMjk="],"dstIndex":363,"srcIndex":1124,"timestampMs":1586535464000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],"dstIndex":366,"srcIndex":1125,"timestampMs":1586107822000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQwMDM2YTM4NmIwN2M0MWI4OWU1OTQ3MzZkYWRiNjEzNGNmMTgyZGU="],"dstIndex":350,"srcIndex":1126,"timestampMs":1586498582000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhNjIzZmJjMzczNWM5YTMyZDEwMTk5ODgwMjE0Y2M3OWNhYTQwMDQ="],"dstIndex":369,"srcIndex":1127,"timestampMs":1586712241000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],"dstIndex":371,"srcIndex":1128,"timestampMs":1586111848000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],"dstIndex":375,"srcIndex":1129,"timestampMs":1586450203000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRlYzZiZGM2YTEyMGUxMjMwNTJlYmY2OTBkZGY2ZjMyYjljMzU3MjI="],"dstIndex":376,"srcIndex":1130,"timestampMs":1586649806000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],"dstIndex":386,"srcIndex":1131,"timestampMs":1586208161000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU1NGE4MmJjMDVjYjcxM2U5MmU4YjM1MjNiNTIxMDc4ZGFmODI5ZjA="],"dstIndex":387,"srcIndex":1132,"timestampMs":1586779463000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU2ZTE0NTBhYmQyOTQ1N2QzYWVmYmRhZWYzZTM4NTYyNzI3Yjc2Mjg="],"dstIndex":390,"srcIndex":1133,"timestampMs":1586477016000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUwMjNlZWU3MWM5YzNmMmYxNmRlMWIyMmU5ZjM3ZmRhMjZjMmYwMjM="],"dstIndex":378,"srcIndex":1134,"timestampMs":1586995532000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],"dstIndex":383,"srcIndex":1135,"timestampMs":1586608102000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzYjZmMWI5ODBiNzk3ZjkyZDU5ZmM0OTEyYjJmZTZlOTk5Zjc3NGE="],"dstIndex":384,"srcIndex":1136,"timestampMs":1586628192000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzZDliNjI4NjJkMGU4ZWY1OTdkYmZmY2JkMGRhOGJjZDEyMTAwY2M="],"dstIndex":385,"srcIndex":1137,"timestampMs":1586736284000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVhZTZkYjc0ZWM2MzgyMjJjYjYwOTU3YzMxMDVlMTVkZTdmODQ0NTc="],"dstIndex":395,"srcIndex":1138,"timestampMs":1586712506000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],"dstIndex":400,"srcIndex":1139,"timestampMs":1586438648000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkZDA1ZTM2MDVlOTk0MGY2NWYyMDU5ZThjNDI4NjA3N2E2NDM5ZGI="],"dstIndex":401,"srcIndex":1140,"timestampMs":1586556340000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmNjg5MDEwZjZlMGE0Mzg1MTNiN2U0NGVmMzdhZTEyZDU5ZGRmOTE="],"dstIndex":404,"srcIndex":1141,"timestampMs":1586412877000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmYzk5ZjA5MjZhMzgxNDBiYzQxYWI1MzIyZTI4ZTQzZjViNTA5Njk="],"dstIndex":406,"srcIndex":1142,"timestampMs":1586520161000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],"dstIndex":419,"srcIndex":1143,"timestampMs":1586447296000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],"dstIndex":421,"srcIndex":1144,"timestampMs":1586262990000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],"dstIndex":423,"srcIndex":1145,"timestampMs":1586108344000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],"dstIndex":407,"srcIndex":1146,"timestampMs":1586822144000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNDRkYTc3ZDc3Y2Q1ZjBiZjc4MmZkNDdmYWY3ODEzY2I5YTAwZDc="],"dstIndex":408,"srcIndex":1147,"timestampMs":1586426011000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNGJhODc2MWNkZGRjODRiZmE2NjQ4NWZlMzY3NDk1ZTVjOGE2NWE="],"dstIndex":409,"srcIndex":1148,"timestampMs":1586619438000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],"dstIndex":410,"srcIndex":1149,"timestampMs":1586712379000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYyZDQ3MjQyMzMyZjRlMWQ4NmY3ZDdhZTQ2MGY2ZGM5OTgzNDRhYTI="],"dstIndex":414,"srcIndex":1150,"timestampMs":1586631415000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],"dstIndex":428,"srcIndex":1151,"timestampMs":1586629712000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmMWEzOTY4ZGFhMWUzZDJiZDYwN2Y4MWE1OTlhYzVlYmY3M2Y3MTc="],"dstIndex":434,"srcIndex":1152,"timestampMs":1586263834000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],"dstIndex":435,"srcIndex":1153,"timestampMs":1586810697000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmYjU4ZDJiY2IxMGVmYTFhMTgzNmIwYmYzMzU3YWU2YmMzMzk1NWI="],"dstIndex":437,"srcIndex":1154,"timestampMs":1586541781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],"dstIndex":443,"srcIndex":1155,"timestampMs":1586630579000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],"dstIndex":444,"srcIndex":1156,"timestampMs":1586640176000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],"dstIndex":445,"srcIndex":1157,"timestampMs":1586802604000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],"dstIndex":446,"srcIndex":1158,"timestampMs":1586972788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],"dstIndex":447,"srcIndex":1159,"timestampMs":1586264143000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],"dstIndex":449,"srcIndex":1160,"timestampMs":1586443674000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjcxM2FjYmQ0NTkzYTdhMTBiMDU0NGFhYWI3ZmM0YWMwNWE2NmY5YWU="],"dstIndex":438,"srcIndex":1161,"timestampMs":1586671402000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczNTA1YzM0YTFiNDZhM2RmY2FjYTRkOWMzYWExMTZmZGY1MWUwZGI="],"dstIndex":440,"srcIndex":1162,"timestampMs":1586265411000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczZGJmZWEwMGQyNjlmZjk1M2VlNTBjMDM0ZjFjNjkzOTc0M2E1ZGU="],"dstIndex":441,"srcIndex":1163,"timestampMs":1586909106000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhOTkxOTYzYTVjOGZjOGRiYTRhYjZhMGMxZTM5NDIxZWVlYzQ1ZDY="],"dstIndex":452,"srcIndex":1164,"timestampMs":1586456075000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],"dstIndex":453,"srcIndex":1165,"timestampMs":1586629689000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],"dstIndex":454,"srcIndex":1166,"timestampMs":1586642724000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],"dstIndex":457,"srcIndex":1167,"timestampMs":1587042850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],"dstIndex":460,"srcIndex":1168,"timestampMs":1586461703000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],"dstIndex":463,"srcIndex":1169,"timestampMs":1586264058000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlYTU5MTZhZDZmOWRlOTg0MWYyNzc5MDE1MDZhYjcyYTM5YmYxNTc="],"dstIndex":464,"srcIndex":1170,"timestampMs":1586973850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],"dstIndex":465,"srcIndex":1171,"timestampMs":1586208446000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],"dstIndex":478,"srcIndex":1172,"timestampMs":1586264565000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],"dstIndex":482,"srcIndex":1173,"timestampMs":1586264365000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhhNTg0ZTRiNGY5YzhhMTExMWJmMzgzZDNhN2E3MmNhM2Y4ZWU1Yjk="],"dstIndex":484,"srcIndex":1174,"timestampMs":1586634125000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],"dstIndex":486,"srcIndex":1175,"timestampMs":1586633972000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],"dstIndex":487,"srcIndex":1176,"timestampMs":1586630527000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],"dstIndex":488,"srcIndex":1177,"timestampMs":1586632841000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],"dstIndex":489,"srcIndex":1178,"timestampMs":1586446829000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],"dstIndex":492,"srcIndex":1179,"timestampMs":1586437704000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlMTNmMzlkMTM3MmI0MjJhOTE0ODU3ZjMyNGVlNjBhYmQyYzc5NWE="],"dstIndex":494,"srcIndex":1180,"timestampMs":1586630734000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],"dstIndex":496,"srcIndex":1181,"timestampMs":1586643749000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],"dstIndex":497,"srcIndex":1182,"timestampMs":1587058263000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlODBiOGZmNWJiYzgxMjNlNTdhYzcyOGZjOWVmY2QxY2QyZDAzOGI="],"dstIndex":498,"srcIndex":1183,"timestampMs":1586613015000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],"dstIndex":499,"srcIndex":1184,"timestampMs":1586556200000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],"dstIndex":509,"srcIndex":1185,"timestampMs":1586426157000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],"dstIndex":510,"srcIndex":1186,"timestampMs":1586504576000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk4MmE4OWRmMmI1MjgyNTc4YTc1OTNlZWE0OTUxMWFlODAzZWUxMGI="],"dstIndex":513,"srcIndex":1187,"timestampMs":1586637613000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],"dstIndex":500,"srcIndex":1188,"timestampMs":1587050798000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],"dstIndex":501,"srcIndex":1189,"timestampMs":1587051668000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],"dstIndex":502,"srcIndex":1190,"timestampMs":1586632115000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],"dstIndex":505,"srcIndex":1191,"timestampMs":1586115022000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],"dstIndex":524,"srcIndex":1192,"timestampMs":1586395769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],"dstIndex":542,"srcIndex":1193,"timestampMs":1586978547000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],"dstIndex":544,"srcIndex":1194,"timestampMs":1587051026000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],"dstIndex":547,"srcIndex":1195,"timestampMs":1586428289000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],"dstIndex":550,"srcIndex":1196,"timestampMs":1586635956000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],"dstIndex":553,"srcIndex":1197,"timestampMs":1586717770000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],"dstIndex":525,"srcIndex":1198,"timestampMs":1586975177000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],"dstIndex":526,"srcIndex":1199,"timestampMs":1586566089000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],"dstIndex":527,"srcIndex":1200,"timestampMs":1586637453000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],"dstIndex":528,"srcIndex":1201,"timestampMs":1586209230000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzNTZmZTM3YjNlZTIyNTZkNTI5YTYyNWE0MmQ4OTA5NjI4NzAwOTY="],"dstIndex":536,"srcIndex":1202,"timestampMs":1586606578000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],"dstIndex":540,"srcIndex":1203,"timestampMs":1586619306000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],"dstIndex":557,"srcIndex":1204,"timestampMs":1586635980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFjZTNkODIxODMzYzAxNTdlOGUzZjc0YzA2OTUxZmU3OWNiYjQ5ZTc="],"dstIndex":558,"srcIndex":1205,"timestampMs":1586475455000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFmM2ZjNDBiMGI0ZjAxMGY0MjM2MzkxYmMyNDViYWI1YzNmYzUzNDM="],"dstIndex":562,"srcIndex":1206,"timestampMs":1586801019000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],"dstIndex":578,"srcIndex":1207,"timestampMs":1586440952000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1NWE3YTE5NmI4Zjg1ODE3ZTg1NDhiZjdiOWFmYmExMzQxMTMxZTI="],"dstIndex":579,"srcIndex":1208,"timestampMs":1586566249000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],"dstIndex":583,"srcIndex":1209,"timestampMs":1586704728000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],"dstIndex":592,"srcIndex":1210,"timestampMs":1586425156000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],"dstIndex":568,"srcIndex":1211,"timestampMs":1586810374000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyZWMwNjQ2YTc1MzM4MjhiMDAzYTdjYzUyNWFjMGVjNDhjNWQ5YTA="],"dstIndex":569,"srcIndex":1212,"timestampMs":1586692988000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],"dstIndex":570,"srcIndex":1213,"timestampMs":1586810650000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],"dstIndex":572,"srcIndex":1214,"timestampMs":1586633830000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],"dstIndex":575,"srcIndex":1215,"timestampMs":1586631279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJhYjQ4OGUwNTMxYTgyNjc3NzgyOWU3MGM0Y2Y4ZjYyMDIwMmU4ODE="],"dstIndex":599,"srcIndex":1216,"timestampMs":1586304876000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJiNGM4MDYwOGRiNTJjMDNhMzNiMDllZGJmOGZkYmZmYzY2NmM2NjQ="],"dstIndex":600,"srcIndex":1217,"timestampMs":1586659664000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJjYzBkMWUxOGY1NmMwZWUwOThjN2ExMzE2YWZhNTI1MmM1ZDMzOTI="],"dstIndex":605,"srcIndex":1218,"timestampMs":1586326476000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],"dstIndex":609,"srcIndex":1219,"timestampMs":1586439053000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],"dstIndex":610,"srcIndex":1220,"timestampMs":1586645068000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],"dstIndex":611,"srcIndex":1221,"timestampMs":1587051708000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],"dstIndex":625,"srcIndex":1222,"timestampMs":1586461592000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],"dstIndex":630,"srcIndex":1223,"timestampMs":1586426867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],"dstIndex":633,"srcIndex":1224,"timestampMs":1586659020000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],"dstIndex":635,"srcIndex":1225,"timestampMs":1586462092000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],"dstIndex":637,"srcIndex":1226,"timestampMs":1586445094000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],"dstIndex":614,"srcIndex":1227,"timestampMs":1586659508000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],"dstIndex":615,"srcIndex":1228,"timestampMs":1586710445000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],"dstIndex":616,"srcIndex":1229,"timestampMs":1586461896000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],"dstIndex":617,"srcIndex":1230,"timestampMs":1586640763000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMxOTFlNTdmNDQ2NjJiY2I3NTNlYzRjMDhhMjU1NDViMGQyNWUyODQ="],"dstIndex":618,"srcIndex":1231,"timestampMs":1586865848000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMyNjRjZmUxYmM5NmM3NTgwNzliZmZjZDcyOGY0OTdkMGQ3YzAxMTc="],"dstIndex":619,"srcIndex":1232,"timestampMs":1587038694000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMzNGJjOWM1NzNlYWNjMDA4Y2E5ODY1M2RkZDI2NjFmODIzZmY5YjI="],"dstIndex":621,"srcIndex":1233,"timestampMs":1587060270000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],"dstIndex":638,"srcIndex":1234,"timestampMs":1586442756000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],"dstIndex":639,"srcIndex":1235,"timestampMs":1586656761000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],"dstIndex":641,"srcIndex":1236,"timestampMs":1586639218000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],"dstIndex":643,"srcIndex":1237,"timestampMs":1586431949000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],"dstIndex":654,"srcIndex":1238,"timestampMs":1586711922000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],"dstIndex":658,"srcIndex":1239,"timestampMs":1586712103000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],"dstIndex":661,"srcIndex":1240,"timestampMs":1586820040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],"dstIndex":662,"srcIndex":1241,"timestampMs":1586425693000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],"dstIndex":665,"srcIndex":1242,"timestampMs":1586646488000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],"dstIndex":666,"srcIndex":1243,"timestampMs":1586657456000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],"dstIndex":646,"srcIndex":1244,"timestampMs":1586109264000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],"dstIndex":648,"srcIndex":1245,"timestampMs":1586395938000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],"dstIndex":651,"srcIndex":1246,"timestampMs":1586443142000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],"dstIndex":653,"srcIndex":1247,"timestampMs":1586704788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],"dstIndex":670,"srcIndex":1248,"timestampMs":1586612834000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],"dstIndex":671,"srcIndex":1249,"timestampMs":1586443040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRiYjRiYmI0YTQ4YmYzNmIzODkwY2IyMzAxMjMzN2MwYmZiZmM2Yzc="],"dstIndex":673,"srcIndex":1250,"timestampMs":1586584977000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],"dstIndex":674,"srcIndex":1251,"timestampMs":1586439553000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],"dstIndex":681,"srcIndex":1252,"timestampMs":1586449851000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU0ZGIxZTVjMDEzOTA1OTBhNTNlNDc0MjRiNmZjNjM4OWZiZWQ0NTk="],"dstIndex":692,"srcIndex":1253,"timestampMs":1586646613000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],"dstIndex":693,"srcIndex":1254,"timestampMs":1586440769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],"dstIndex":696,"srcIndex":1255,"timestampMs":1586638167000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],"dstIndex":697,"srcIndex":1256,"timestampMs":1586442958000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],"dstIndex":698,"srcIndex":1257,"timestampMs":1586443278000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4ZDI1NjZlMDIzYTdjZWZiMDRjNTE1N2IwZjg1NTY4ZmNiOWEzYzU="],"dstIndex":699,"srcIndex":1258,"timestampMs":1587017056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],"dstIndex":687,"srcIndex":1259,"timestampMs":1586108556000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],"dstIndex":688,"srcIndex":1260,"timestampMs":1586632045000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],"dstIndex":706,"srcIndex":1261,"timestampMs":1586644275000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],"dstIndex":707,"srcIndex":1262,"timestampMs":1586439910000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],"dstIndex":708,"srcIndex":1263,"timestampMs":1586635090000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlODA1YzIzMGQ1OGI0MjBmMzliZWRkNmQ3ZGM1YzEwYzhmMTQ4NTY="],"dstIndex":710,"srcIndex":1264,"timestampMs":1586563402000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],"dstIndex":712,"srcIndex":1265,"timestampMs":1586761063000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVmZTJhMjEwMjQyYWRjZDUyYTI4OGQ1N2YzNzNiMDkxODdiODhjMTc="],"dstIndex":714,"srcIndex":1266,"timestampMs":1586714645000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],"dstIndex":723,"srcIndex":1267,"timestampMs":1587049279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0NTk3ZWFhNmIwNjgxZWJmYjdlMzI5OTFmYzI5NWY1MjQyN2QxOTk="],"dstIndex":724,"srcIndex":1268,"timestampMs":1586630029000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],"dstIndex":725,"srcIndex":1269,"timestampMs":1586425884000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY1YjZiNWI5YjhhYjQ5MzM0MjU5MTc5OTM2OWJhYjQ0NzNhZDRiZDU="],"dstIndex":726,"srcIndex":1270,"timestampMs":1586930710000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],"dstIndex":728,"srcIndex":1271,"timestampMs":1586208275000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],"dstIndex":715,"srcIndex":1272,"timestampMs":1586641071000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],"dstIndex":716,"srcIndex":1273,"timestampMs":1586446525000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxNjUwNTgxNDk1YmQ1YmE5NTFlNmFjYTNhZGM2NWFhNDI3MWU3ZWM="],"dstIndex":717,"srcIndex":1274,"timestampMs":1586391268000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],"dstIndex":720,"srcIndex":1275,"timestampMs":1586607022000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],"dstIndex":721,"srcIndex":1276,"timestampMs":1586457498000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],"dstIndex":736,"srcIndex":1277,"timestampMs":1586656082000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZjZTMzMzk5ZDA2OTY5OTUzODVkODg5NTk5NWNiMGZkYWFkNTY2MTU="],"dstIndex":738,"srcIndex":1278,"timestampMs":1586504710000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],"dstIndex":740,"srcIndex":1279,"timestampMs":1586639647000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],"dstIndex":743,"srcIndex":1280,"timestampMs":1586396173000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmNzA4YzNiNzM1MmE5YjY1OWRmODEyMDM1MWU2ZjFlYWI1NjZhMmE="],"dstIndex":744,"srcIndex":1281,"timestampMs":1586450503000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],"dstIndex":745,"srcIndex":1282,"timestampMs":1586109667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],"dstIndex":227,"srcIndex":1283,"timestampMs":1585184379000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],"dstIndex":217,"srcIndex":1284,"timestampMs":1583868918000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],"dstIndex":232,"srcIndex":1285,"timestampMs":1583846036000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],"dstIndex":236,"srcIndex":1286,"timestampMs":1586115483000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],"dstIndex":256,"srcIndex":1287,"timestampMs":1585184096000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],"dstIndex":238,"srcIndex":1288,"timestampMs":1586115750000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],"dstIndex":246,"srcIndex":1289,"timestampMs":1584727008000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],"dstIndex":264,"srcIndex":1290,"timestampMs":1586119837000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],"dstIndex":270,"srcIndex":1291,"timestampMs":1586119867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],"dstIndex":317,"srcIndex":1292,"timestampMs":1583841786000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],"dstIndex":345,"srcIndex":1293,"timestampMs":1583855508000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],"dstIndex":348,"srcIndex":1294,"timestampMs":1584736018000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],"dstIndex":364,"srcIndex":1295,"timestampMs":1586115035000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],"dstIndex":403,"srcIndex":1296,"timestampMs":1584727355000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],"dstIndex":405,"srcIndex":1297,"timestampMs":1586116855000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],"dstIndex":411,"srcIndex":1298,"timestampMs":1584733391000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],"dstIndex":430,"srcIndex":1299,"timestampMs":1585132575000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],"dstIndex":451,"srcIndex":1300,"timestampMs":1585128878000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],"dstIndex":485,"srcIndex":1301,"timestampMs":1584729372000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],"dstIndex":503,"srcIndex":1302,"timestampMs":1585126267000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],"dstIndex":518,"srcIndex":1303,"timestampMs":1586115569000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],"dstIndex":551,"srcIndex":1304,"timestampMs":1585126105000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],"dstIndex":529,"srcIndex":1305,"timestampMs":1584722599000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],"dstIndex":531,"srcIndex":1306,"timestampMs":1586115692000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],"dstIndex":539,"srcIndex":1307,"timestampMs":1586115737000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],"dstIndex":580,"srcIndex":1308,"timestampMs":1585142847000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],"dstIndex":589,"srcIndex":1309,"timestampMs":1586115523000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],"dstIndex":566,"srcIndex":1310,"timestampMs":1583707484000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],"dstIndex":604,"srcIndex":1311,"timestampMs":1584925959000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],"dstIndex":652,"srcIndex":1312,"timestampMs":1584468261000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],"dstIndex":676,"srcIndex":1313,"timestampMs":1585184645000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],"dstIndex":675,"srcIndex":1314,"timestampMs":1586115159000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],"dstIndex":739,"srcIndex":1315,"timestampMs":1585134244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],"dstIndex":741,"srcIndex":1316,"timestampMs":1584727333000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","12"],"dstIndex":1382,"srcIndex":1317,"timestampMs":1586638125000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1382,"srcIndex":1318,"timestampMs":1586704018000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","15"],"dstIndex":1382,"srcIndex":1319,"timestampMs":1586705495000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1382,"srcIndex":1320,"timestampMs":1586705553000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","17"],"dstIndex":1382,"srcIndex":1321,"timestampMs":1586705865000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","18"],"dstIndex":1382,"srcIndex":1322,"timestampMs":1586712839000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","19"],"dstIndex":1382,"srcIndex":1323,"timestampMs":1586768126000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","2"],"dstIndex":1382,"srcIndex":1324,"timestampMs":1586269776000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","22"],"dstIndex":1382,"srcIndex":1325,"timestampMs":1586819336000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1382,"srcIndex":1326,"timestampMs":1586821830000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","24"],"dstIndex":1382,"srcIndex":1327,"timestampMs":1586823283000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1382,"srcIndex":1328,"timestampMs":1586858542000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","26"],"dstIndex":1382,"srcIndex":1329,"timestampMs":1586921943000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","3"],"dstIndex":1382,"srcIndex":1330,"timestampMs":1586390052000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","4"],"dstIndex":1382,"srcIndex":1331,"timestampMs":1586390446000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","5"],"dstIndex":1382,"srcIndex":1332,"timestampMs":1586390871000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","6"],"dstIndex":1382,"srcIndex":1333,"timestampMs":1586396494000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","8"],"dstIndex":1382,"srcIndex":1334,"timestampMs":1586435403000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","9"],"dstIndex":1382,"srcIndex":1335,"timestampMs":1586440155000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","TheSource","3"],"dstIndex":1383,"srcIndex":1336,"timestampMs":1586104764000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1384,"srcIndex":1337,"timestampMs":1586116752000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1385,"srcIndex":1338,"timestampMs":1586917207000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1385,"srcIndex":1339,"timestampMs":1586934042000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","3"],"dstIndex":1385,"srcIndex":1340,"timestampMs":1586934224000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1385,"srcIndex":1341,"timestampMs":1586990170000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","6"],"dstIndex":1385,"srcIndex":1342,"timestampMs":1586990449000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","7"],"dstIndex":1385,"srcIndex":1343,"timestampMs":1586990584000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","comms","1"],"dstIndex":1386,"srcIndex":1344,"timestampMs":1586709265000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","leaderboard","1"],"dstIndex":1388,"srcIndex":1345,"timestampMs":1586706267000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","leaderboard","2"],"dstIndex":1388,"srcIndex":1346,"timestampMs":1586706318000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","1"],"dstIndex":1389,"srcIndex":1347,"timestampMs":1586666816000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","2"],"dstIndex":1389,"srcIndex":1348,"timestampMs":1586666998000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","3"],"dstIndex":1389,"srcIndex":1349,"timestampMs":1586705051000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1389,"srcIndex":1350,"timestampMs":1586709014000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","5"],"dstIndex":1389,"srcIndex":1351,"timestampMs":1586772477000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","6"],"dstIndex":1389,"srcIndex":1352,"timestampMs":1586772739000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","10"],"dstIndex":1390,"srcIndex":1353,"timestampMs":1586705290000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","11"],"dstIndex":1390,"srcIndex":1354,"timestampMs":1586712148000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","2"],"dstIndex":1390,"srcIndex":1355,"timestampMs":1586571331000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","7"],"dstIndex":1390,"srcIndex":1356,"timestampMs":1586662991000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1382,"srcIndex":1357,"timestampMs":1586264552000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1382,"srcIndex":1358,"timestampMs":1586446688000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1382,"srcIndex":1359,"timestampMs":1586449916000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1382,"srcIndex":1360,"timestampMs":1586658580000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1382,"srcIndex":1361,"timestampMs":1586802611000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1382,"srcIndex":1362,"timestampMs":1586810530000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1382,"srcIndex":1363,"timestampMs":1586995113000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1382,"srcIndex":1364,"timestampMs":1586425681000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1383,"srcIndex":1365,"timestampMs":1586103666000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1383,"srcIndex":1366,"timestampMs":1586104083000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1385,"srcIndex":1367,"timestampMs":1586970997000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1385,"srcIndex":1368,"timestampMs":1587070982000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","9"],"dstIndex":1385,"srcIndex":1369,"timestampMs":1587079858000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1390,"srcIndex":1370,"timestampMs":1586566012000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","12"],"dstIndex":1390,"srcIndex":1371,"timestampMs":1586717760000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1390,"srcIndex":1372,"timestampMs":1586727817000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1390,"srcIndex":1373,"timestampMs":1586797004000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1390,"srcIndex":1374,"timestampMs":1586914696000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","16"],"dstIndex":1390,"srcIndex":1375,"timestampMs":1586987888000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1390,"srcIndex":1376,"timestampMs":1586633970000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1390,"srcIndex":1377,"timestampMs":1586645179000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1390,"srcIndex":1378,"timestampMs":1586654103000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1390,"srcIndex":1379,"timestampMs":1586656931000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1390,"srcIndex":1380,"timestampMs":1586663009000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1390,"srcIndex":1381,"timestampMs":1586664552000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],"dstIndex":1360,"srcIndex":1391,"timestampMs":1586658808000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","bot","8","395001410"],"dstIndex":1368,"srcIndex":1392,"timestampMs":1587071400000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","bot","8","395035075"],"dstIndex":1368,"srcIndex":1393,"timestampMs":1587075078000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","website","15","393444362"],"dstIndex":1374,"srcIndex":1394,"timestampMs":1586924060000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],"dstIndex":1318,"srcIndex":746,"timestampMs":1586735225000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],"dstIndex":1318,"srcIndex":747,"timestampMs":1586793675000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],"dstIndex":1320,"srcIndex":748,"timestampMs":1586821838000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],"dstIndex":1322,"srcIndex":749,"timestampMs":1586773257000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":1322,"srcIndex":750,"timestampMs":1586787682000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],"dstIndex":1322,"srcIndex":751,"timestampMs":1586808032000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],"dstIndex":1325,"srcIndex":752,"timestampMs":1586819514000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],"dstIndex":1325,"srcIndex":753,"timestampMs":1586820570000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],"dstIndex":1325,"srcIndex":754,"timestampMs":1586840296000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],"dstIndex":1328,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],"dstIndex":1329,"srcIndex":756,"timestampMs":1586922019000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],"dstIndex":1336,"srcIndex":757,"timestampMs":1586802750000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],"dstIndex":1340,"srcIndex":758,"timestampMs":1586990245000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],"dstIndex":1347,"srcIndex":759,"timestampMs":1586666872000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],"dstIndex":1347,"srcIndex":760,"timestampMs":1586797413000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":1347,"srcIndex":761,"timestampMs":1586801390000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],"dstIndex":1347,"srcIndex":762,"timestampMs":1586801948000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":1347,"srcIndex":763,"timestampMs":1586802204000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],"dstIndex":1347,"srcIndex":764,"timestampMs":1586802422000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],"dstIndex":1347,"srcIndex":765,"timestampMs":1586962450000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],"dstIndex":1348,"srcIndex":766,"timestampMs":1586704028000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],"dstIndex":1349,"srcIndex":767,"timestampMs":1586709561000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],"dstIndex":1350,"srcIndex":768,"timestampMs":1586858205000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":1352,"srcIndex":769,"timestampMs":1586773337000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":1352,"srcIndex":770,"timestampMs":1586773655000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],"dstIndex":1352,"srcIndex":771,"timestampMs":1586786432000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],"dstIndex":1352,"srcIndex":772,"timestampMs":1586786582000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],"dstIndex":1352,"srcIndex":773,"timestampMs":1586790511000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":1352,"srcIndex":774,"timestampMs":1586790870000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],"dstIndex":1352,"srcIndex":775,"timestampMs":1586959270000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":1361,"srcIndex":776,"timestampMs":1586810690000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],"dstIndex":1369,"srcIndex":777,"timestampMs":1587079943000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":1392,"srcIndex":778,"timestampMs":1587071400000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":1392,"srcIndex":779,"timestampMs":1587071419000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":1392,"srcIndex":780,"timestampMs":1587071453000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1172,"srcIndex":1357,"timestampMs":1586264565000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1178,"srcIndex":1358,"timestampMs":1586446829000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1129,"srcIndex":1359,"timestampMs":1586450203000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1074,"srcIndex":1360,"timestampMs":1586658939000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1153,"srcIndex":1361,"timestampMs":1586810697000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1213,"srcIndex":1362,"timestampMs":1586810650000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1167,"srcIndex":1363,"timestampMs":1587042850000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1241,"srcIndex":1364,"timestampMs":1586425693000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":896,"srcIndex":1365,"timestampMs":1586104041000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1022,"srcIndex":1366,"timestampMs":1586104090000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":794,"srcIndex":1367,"timestampMs":1586971104000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":801,"srcIndex":1368,"timestampMs":1587075097000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":814,"srcIndex":1370,"timestampMs":1586566020000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":824,"srcIndex":1372,"timestampMs":1586727823000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":823,"srcIndex":1373,"timestampMs":1586797014000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":864,"srcIndex":1376,"timestampMs":1586633977000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":868,"srcIndex":1377,"timestampMs":1586645187000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":870,"srcIndex":1378,"timestampMs":1586654110000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":822,"srcIndex":1379,"timestampMs":1586656936000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":837,"srcIndex":1380,"timestampMs":1586663015000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":813,"srcIndex":1381,"timestampMs":1586664558000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1397,"timestampMs":1586871593000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1338,"srcIndex":1397,"timestampMs":1586918494000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1374,"srcIndex":1397,"timestampMs":1586924028000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":769,"srcIndex":1397,"timestampMs":1586785423000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":770,"srcIndex":1397,"timestampMs":1586785422000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":776,"srcIndex":1397,"timestampMs":1586810718000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":1402,"timestampMs":1587076887000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1410,"timestampMs":1586790714000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1402,"timestampMs":1586810640000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1397,"timestampMs":1586871595000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":763,"srcIndex":1397,"timestampMs":1586802382000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1410,"timestampMs":1586790717000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":774,"srcIndex":1410,"timestampMs":1586791025000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":761,"srcIndex":1397,"timestampMs":1586801822000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1402,"timestampMs":1586810630000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":778,"srcIndex":1403,"timestampMs":1587071912000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":779,"srcIndex":1403,"timestampMs":1587071947000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":780,"srcIndex":1403,"timestampMs":1587072066000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU=","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1367,"srcIndex":794,"timestampMs":1586971104000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI=","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":801,"timestampMs":1587075097000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM=","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1381,"srcIndex":813,"timestampMs":1586664558000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI=","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1370,"srcIndex":814,"timestampMs":1586566020000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE=","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1379,"srcIndex":822,"timestampMs":1586656936000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ=","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1373,"srcIndex":823,"timestampMs":1586797014000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc=","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1372,"srcIndex":824,"timestampMs":1586727823000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg=","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1380,"srcIndex":837,"timestampMs":1586663015000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE=","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1376,"srcIndex":864,"timestampMs":1586633977000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE=","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1377,"srcIndex":868,"timestampMs":1586645187000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk=","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1378,"srcIndex":870,"timestampMs":1586654110000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY=","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":896,"timestampMs":1586104041000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],"dstIndex":895,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":1000,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":907,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":1026,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA=","5","sourcecred","github","USERLIKE","USER","hammadj"],"dstIndex":1409,"srcIndex":950,"timestampMs":1583122040000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":982,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":1028,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I=","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":982,"timestampMs":1581902687000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM=","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1366,"srcIndex":1022,"timestampMs":1586104090000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],"dstIndex":897,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":1037,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA=","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1094,"timestampMs":1586994934000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM=","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1359,"srcIndex":1129,"timestampMs":1586450203000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc=","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1361,"srcIndex":1153,"timestampMs":1586810697000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI=","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1363,"srcIndex":1167,"timestampMs":1587042850000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ=","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1357,"srcIndex":1172,"timestampMs":1586264565000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":1088,"srcIndex":1199,"timestampMs":1586566089000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY=","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1213,"timestampMs":1586810650000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI=","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1364,"srcIndex":1241,"timestampMs":1586425693000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc=","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1337,"srcIndex":1296,"timestampMs":1584727355000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","15","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1318,"srcIndex":1319,"timestampMs":1586705495000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","17","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1320,"srcIndex":1321,"timestampMs":1586705865000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","26","5","sourcecred","github","USERLIKE","USER","pythonpete32"],"dstIndex":1401,"srcIndex":1329,"timestampMs":1586921943000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","bot","1","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":1338,"timestampMs":1586917207000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","onboarding","1","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1350,"srcIndex":1347,"timestampMs":1586666816000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","AraCred","21","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1362,"timestampMs":1586810530000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","AraCred","27","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1363,"timestampMs":1586995113000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","bot","8","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1341,"srcIndex":1368,"timestampMs":1587070982000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","bot","9","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1339,"srcIndex":1369,"timestampMs":1587079858000},{"address":["sourcecred","github","REFERENCES","7","sourcecred","github","REVIEW","aracred","bot","8","395001410","5","sourcecred","github","USERLIKE","USER","crisog"],"dstIndex":1403,"srcIndex":1392,"timestampMs":1587071400000},{"address":["sourcecred","github","REFERENCES","7","sourcecred","github","REVIEW","aracred","website","15","393444362","5","sourcecred","github","USERLIKE","USER","crisog"],"dstIndex":1403,"srcIndex":1394,"timestampMs":1586924060000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":748,"timestampMs":1586821838000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","pythonpete32"],"dstIndex":1401,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":756,"timestampMs":1586922019000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":761,"timestampMs":1586801390000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606","5","sourcecred","github","USERLIKE","USER","luisivan"],"dstIndex":1410,"srcIndex":771,"timestampMs":1586786432000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":776,"timestampMs":1586810690000}],"nodes":[{"description":"Aracred#5392","index":0,"timestampMs":null},{"description":"Beanow#5887","index":1,"timestampMs":null},{"description":"Mckmuze#3360","index":2,"timestampMs":null},{"description":"penguin#5853","index":3,"timestampMs":null},{"description":"James | Enigma#0357","index":4,"timestampMs":null},{"description":"TheEylon#9795","index":5,"timestampMs":null},{"description":"Jack G#7167","index":6,"timestampMs":null},{"description":"Santiago#0325","index":7,"timestampMs":null},{"description":"JackALaing#7001","index":8,"timestampMs":null},{"description":"Saimano#0272","index":9,"timestampMs":null},{"description":"Joey C#7995","index":10,"timestampMs":null},{"description":"LBS#6541","index":11,"timestampMs":null},{"description":"Luis from Aragon 🦅#8126","index":12,"timestampMs":null},{"description":"YoungKidWarrior#5865","index":13,"timestampMs":null},{"description":"#🎪-general message [\"testing...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":14,"timestampMs":1585931015500},{"description":"#🎪-general message [\"<@!118260545211072517> welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696451005914546256)","index":15,"timestampMs":1586117259244},{"description":"#🎪-general message [\"aracred.xyz...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696454968831508630)","index":16,"timestampMs":1586118204077},{"description":"#🎪-general message [\"aracred.dev...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696455224532926464)","index":17,"timestampMs":1586118265041},{"description":"#🎪-general message [\"<@!657069807505637397> how do ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696609260196593664)","index":18,"timestampMs":1586154990005},{"description":"#🎪-general message [\"<@683892894767251489> here we ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696708274682069062)","index":19,"timestampMs":1586178596898},{"description":"#🎪-general message [\"> This is an open-source proje...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696730540039995493)","index":20,"timestampMs":1586183905373},{"description":"#🎪-general message [\"<@!665203331639148553> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696740396331696198)","index":21,"timestampMs":1586186255296},{"description":"#🎪-general message [\"<@!371754999304290304> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696769305131614260)","index":22,"timestampMs":1586193147691},{"description":"#🎪-general message [\"<@!571023281382227978> <@!6570...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696853096441184326)","index":23,"timestampMs":1586213125096},{"description":"#🎪-general message [\"<@657069807505637397> was sad ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698673271729553469)","index":24,"timestampMs":1586647088702},{"description":"#🎪-general message [\"The SourceCred => ERC-20/DAO i...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698691171811328080)","index":25,"timestampMs":1586651356414},{"description":"#🎪-general message [\"<@!208321561982271489> What up...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698710294427467857)","index":26,"timestampMs":1586655915601},{"description":"#🎪-general message [\"hey hey <@!657069807505637397>...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698710365046833192)","index":27,"timestampMs":1586655932438},{"description":"#🎪-general message [\"Hey <@505789102222737420> 👋...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698799127244308550)","index":28,"timestampMs":1586677094995},{"description":"#🎪-general message [\"> I would also frame this a bi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698897288373993508)","index":29,"timestampMs":1586700498432},{"description":"#🎪-general message [\"It makes sense to me. There ha...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698919569078878289)","index":30,"timestampMs":1586705810566},{"description":"#🎪-general message [\"This works toward the concept ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698921167011971168)","index":31,"timestampMs":1586706191543},{"description":"#🎪-general message [\"At the end of the day “composi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698921390845198426)","index":32,"timestampMs":1586706244909},{"description":"#🎪-general message [\"Hey <@571023281382227978> 👋...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698932174396850236)","index":33,"timestampMs":1586708815908},{"description":"#🎪-general message [\"<@!333143183355543552> <@!5057...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698935929942966332)","index":34,"timestampMs":1586709711300},{"description":"#🎪-general message [\"<@!250086586450968576> I'd lik...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698941350531301477)","index":35,"timestampMs":1586711003669},{"description":"#🎪-general message [\"> At the end of the day “compo...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698946297012420619)","index":36,"timestampMs":1586712183002},{"description":"#🎪-general message [\"<@!657069807505637397> could w...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698965088530595990)","index":37,"timestampMs":1586716663249},{"description":"#🎪-general message [\"> I agree! in fact, i would ar...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698965418370400296)","index":38,"timestampMs":1586716741889},{"description":"#🎪-general message [\"> one term that i think we nee...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698968459890917436)","index":39,"timestampMs":1586717467044},{"description":"#🎪-general message [\"> <@!657069807505637397> could...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698968989878976612)","index":40,"timestampMs":1586717593403},{"description":"#🎪-general message [\"> like, in sourcecred I can re...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698969370533298296)","index":41,"timestampMs":1586717684158},{"description":"#🎪-general message [\"> if/when SourceCred community...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698969730580742174)","index":42,"timestampMs":1586717770000},{"description":"#🎪-general message [\"<@!321092785921064961> welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698970943955140738)","index":43,"timestampMs":1586718059291},{"description":"#🎪-general message [\"Beyond that, if you want to le...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698973708316049488)","index":44,"timestampMs":1586718718366},{"description":"#🎪-general message [\"> and I was thinking something...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698982179069362196)","index":45,"timestampMs":1586720737951},{"description":"#🎪-general message [\"> <@!250086586450968576> I'd l...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699006982681657354)","index":46,"timestampMs":1586726651593},{"description":"#🎪-general message [\"> Could maybe just create a re...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699007297099268116)","index":47,"timestampMs":1586726726556},{"description":"#🎪-general message [\"> <@!657069807505637397> \n> \n>...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699016223303794728)","index":48,"timestampMs":1586728854729},{"description":"#🎪-general message [\"( <@!250086586450968576> <@!65...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699020835096231937)","index":49,"timestampMs":1586729954266},{"description":"#🎪-general message [\"social structures emerge which...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699021694240686190)","index":50,"timestampMs":1586730159102},{"description":"#🎪-general message [\"> it's wayyyyy overly reductio...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699022762215211088)","index":51,"timestampMs":1586730413727},{"description":"#🎪-general message [\"> but we need to re-orient it ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699024432244588644)","index":52,"timestampMs":1586730811893},{"description":"#🎪-general message [\"let me try writing this in roa...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":53,"timestampMs":1586731027162},{"description":"#🎪-general message [\"> I'm gonna hang out in the vo...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699124769349566484)","index":54,"timestampMs":1586754734123},{"description":"#🎪-general message [\"What kinda questions <@5710232...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699137595724267520)","index":55,"timestampMs":1586757792169},{"description":"#🎪-general message [\"<@!464169801036726292> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699302777167413379)","index":56,"timestampMs":1586797174494},{"description":"#🎪-general message [\"<@!464169801036726292> I ran ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699304903796981771)","index":57,"timestampMs":1586797681522},{"description":"#🎪-general message [\"<@!363774203960360961> you mea...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699306499930980452)","index":58,"timestampMs":1586798062070},{"description":"#🎪-general message [\"> Hey! I’ve been setting up So...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699318638519255111)","index":59,"timestampMs":1586800956135},{"description":"#🎪-general message [\"> Nope it generates it for all...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699325373472702534)","index":60,"timestampMs":1586802561873},{"description":"#🎪-general message [\"This was the guide: https://gi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699325915578236949)","index":61,"timestampMs":1586802691121},{"description":"#🎪-general message [\"I saw that guide yesterday and...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699326575627206778)","index":62,"timestampMs":1586802848489},{"description":"#🎪-general message [\"<@!199630270285086720> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699342838756016128)","index":63,"timestampMs":1586806725921},{"description":"#🎪-general message [\"> I've adopted his fix and jus...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699358233437143163)","index":64,"timestampMs":1586810396299},{"description":"#🎪-general message [\"<@657069807505637397> was just...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699383579402174494)","index":65,"timestampMs":1586816439248},{"description":"#🎪-general message [\"<@665203331639148553> hey Luis...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699636647557464194)","index":66,"timestampMs":1586876775398},{"description":"#🎪-general message [\"<@!143776454050709505> <@!6337...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699696022477340735)","index":67,"timestampMs":1586890931482},{"description":"#🎪-general message [\"<@!699326460120530944> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/700038397376331798)","index":68,"timestampMs":1586972560019},{"description":"#🥇-leaderboard message [\"<@!571023281382227978> did you...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697073300131807274)","index":69,"timestampMs":1586265625747},{"description":"#🥇-leaderboard message [\"Hey <@440281764204642314> we a...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697081143551328256)","index":70,"timestampMs":1586267495764},{"description":"#🥇-leaderboard message [\"HI <@!571023281382227978> I'm ...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697318813192028200)","index":71,"timestampMs":1586324160622},{"description":"#🥇-leaderboard message [\"> HI <@!571023281382227978> I'...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697375832364023889)","index":72,"timestampMs":1586337755052},{"description":"#📢-announcements message [\"We have basic overview docs!\nh...\"](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":73,"timestampMs":1586643849022},{"description":"#📢-announcements message [\"We now have a very manual but ...\"](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":74,"timestampMs":1586793570421},{"description":"#⚔-dev message [\"no im trying another tac...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696427343220047872)","index":75,"timestampMs":1586111617618},{"description":"#⚔-dev message [\"Cool. <@!571023281382227978> u...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696440757908799568)","index":76,"timestampMs":1586114815929},{"description":"#⚔-dev message [\"just trying one more thing...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696441890048049232)","index":77,"timestampMs":1586115085852},{"description":"#⚔-dev message [\"<@!571023281382227978> does th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696452154268975225)","index":78,"timestampMs":1586117533033},{"description":"#⚔-dev message [\"<@!537858848912834561> had som...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696730851802742794)","index":79,"timestampMs":1586183979703},{"description":"#⚔-dev message [\"> <@!537858848912834561> had s...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696789204767866911)","index":80,"timestampMs":1586197892134},{"description":"#⚔-dev message [\"<@!571023281382227978> Do we h...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699020484167073792)","index":81,"timestampMs":1586729870598},{"description":"#⚔-dev message [\"sorry <@657069807505637397> co...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699122711745527878)","index":82,"timestampMs":1586754243552},{"description":"#⚔-dev message [\"wss://mainnet.infura.io/v3/<IN...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699123164340551691)","index":83,"timestampMs":1586754351459},{"description":"#⚔-dev message [\"<@!321092785921064961> how is ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699274952301609111)","index":84,"timestampMs":1586790540529},{"description":"#⚔-dev message [\"btw <@!657069807505637397> jus...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699275129204637708)","index":85,"timestampMs":1586790582706},{"description":"#⚔-dev message [\"Working out a few details! Try...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699275497984622760)","index":86,"timestampMs":1586790670630},{"description":"#⚔-dev message [\"> Working out a few details! T...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699276546795372595)","index":87,"timestampMs":1586790920686},{"description":"#⚔-dev message [\"> Yes. Something like !signup ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699277478530646016)","index":88,"timestampMs":1586791142829},{"description":"#⚔-dev message [\"> Interesting, had not seen th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699278809974833224)","index":89,"timestampMs":1586791460270},{"description":"#⚔-dev message [\"<@!571023281382227978> <@!3210...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699404949448163368)","index":90,"timestampMs":1586821534264},{"description":"#⚔-dev message [\"AFAIK modifying the format of ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699406916300046346)","index":91,"timestampMs":1586822003198},{"description":"#⚔-dev message [\"but as <@!118260545211072517> ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699407535194767410)","index":92,"timestampMs":1586822150754},{"description":"#⚔-dev message [\"> i don't recommend blacklisti...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699408033343733841)","index":93,"timestampMs":1586822269522},{"description":"#⚔-dev message [\"<@!440281764204642314> ran the...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699410487020093501)","index":94,"timestampMs":1586822854524},{"description":"#⚔-dev message [\"hey <@!571023281382227978>! ho...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699558251074682931)","index":95,"timestampMs":1586858084220},{"description":"#⚔-dev message [\"also just tried to list out th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699560532046250034)","index":96,"timestampMs":1586858628046},{"description":"#⚔-dev message [\"1\n> hey <@!571023281382227978>...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699939694221328435)","index":97,"timestampMs":1586949027353},{"description":"#⚔-dev message [\"<@!321092785921064961> do you ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700016555521736837)","index":98,"timestampMs":1586967352515},{"description":"#⚔-dev message [\"<@!321092785921064961> is the ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700064770367160361)","index":99,"timestampMs":1586978847830},{"description":"#⚔-dev message [\"The core aracred instance!...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700064920104075394)","index":100,"timestampMs":1586978883530},{"description":"#⚔-dev message [\"I didn't quite get this <@!657...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700073516900417556)","index":101,"timestampMs":1586980933166},{"description":"#⚔-dev message [\"> I didn't quite get this <@!6...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700078148615798814)","index":102,"timestampMs":1586982037453},{"description":"#⚔-dev message [\"<@!571023281382227978> regardi...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700083246087667833)","index":103,"timestampMs":1586983252785},{"description":"#⚔-dev message [\"> Hmm, could I see the credbot...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700085865933832252)","index":104,"timestampMs":1586983877405},{"description":"#⚔-dev message [\"Yup, looking at how the token ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700087985634541678)","index":105,"timestampMs":1586984382781},{"description":"#⚔-dev message [\"hey <@!321092785921064961>...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700345588725841990)","index":106,"timestampMs":1587045800144},{"description":"#⚔-dev message [\"<@!321092785921064961> To join...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700354840445976616)","index":107,"timestampMs":1587048005926},{"description":"#⚔-dev message [\"Community contributions 💯: ht...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700468593451597902)","index":108,"timestampMs":1587075126756},{"description":"#🆘-support message [\"That's a great question and on...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698667046661128244)","index":109,"timestampMs":1586645604530},{"description":"#🆘-support message [\"> Yeah but aren't those in `pr...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698672127418695751)","index":110,"timestampMs":1586646815877},{"description":"#🆘-support message [\"> Ah, so you can configure wei...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698673539011837994)","index":111,"timestampMs":1586647152427},{"description":"#🆘-support message [\"> If I set up a DAO today, can...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698683402920001637)","index":112,"timestampMs":1586649504166},{"description":"#🆘-support message [\"<@657069807505637397> Thanks f...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698956579168321617)","index":113,"timestampMs":1586714634459},{"description":"#🆘-support message [\"> <@!683892894767251489> We'll...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699017594287685672)","index":114,"timestampMs":1586729181597},{"description":"#🆘-support message [\"<@!537858848912834561> AraCred...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699283043940302898)","index":115,"timestampMs":1586792469726},{"description":"#🆘-support message [\"> sure, can do later on? On ou...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699284090607763506)","index":116,"timestampMs":1586792719271},{"description":"#🆘-support message [\"<@!420341518948237331> What's ...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699303864872075295)","index":117,"timestampMs":1586797433823},{"description":"#🆘-support message [\"<@!537858848912834561> To conf...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699352914476400712)","index":118,"timestampMs":1586809128160},{"description":"#💸-cryptoeconomics message [\"<@!657069807505637397> agenda ...\"](https://discordapp.com/channels/695344751490236486/698942081858666527/699821888431587439)","index":119,"timestampMs":1586920940264},{"description":"#💸-cryptoeconomics message [\"Cool! Was thinking to get the ...\"](https://discordapp.com/channels/695344751490236486/698942081858666527/699822779670724650)","index":120,"timestampMs":1586921152752},{"description":"#bot-testing message [\"cc <@!657069807505637397>...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700033440564641854)","index":121,"timestampMs":1586971378223},{"description":"#bot-testing message [\"<@!321092785921064961> gave yo...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700036022368731256)","index":122,"timestampMs":1586971993773},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700038868707180644)","index":123,"timestampMs":1586972672393},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700039441799970969)","index":124,"timestampMs":1586972809029},{"description":"#bot-testing message [\"Also I think for discord, mayb...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040376085381152)","index":125,"timestampMs":1586973031780},{"description":"#bot-testing message [\"Yup getting the id would be th...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":126,"timestampMs":1586973160965},{"description":"#bot-testing message [\"> Yep we can; if we do so thou...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040992916766780)","index":127,"timestampMs":1586973178844},{"description":"#bot-testing message [\"<@657069807505637397>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044206176993470)","index":128,"timestampMs":1586973944945},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044421760286721)","index":129,"timestampMs":1586973996344},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044496049799228)","index":130,"timestampMs":1586974014056},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044548411490335)","index":131,"timestampMs":1586974026540},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044635619328131)","index":132,"timestampMs":1586974047332},{"description":"#bot-testing message [\"<@657069807505637397>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044689285316738)","index":133,"timestampMs":1586974060127},{"description":"#bot-testing message [\"<@363774203960360961>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049028251123832)","index":134,"timestampMs":1586975094617},{"description":"#bot-testing message [\"<@363774203960360961>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049257490808933)","index":135,"timestampMs":1586975149272},{"description":"#bot-testing message [\"<@363774203960360961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049378643017889)","index":136,"timestampMs":1586975178157},{"description":"#bot-testing message [\"Haha, that won't work for too ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700051768008114186)","index":137,"timestampMs":1586975747826},{"description":"#bot-testing message [\"> Haha, that won't work for to...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700055780807802900)","index":138,"timestampMs":1586976704552},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700056792524128306)","index":139,"timestampMs":1586976945764},{"description":"#bot-testing message [\"<@657069807505637397>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059334679330946)","index":140,"timestampMs":1586977551861},{"description":"#bot-testing message [\"<@657069807505637397>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059353306234910)","index":141,"timestampMs":1586977556302},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059384751063091)","index":142,"timestampMs":1586977563799},{"description":"#bot-testing message [\"<@!657069807505637397> , don't...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059438136033361)","index":143,"timestampMs":1586977576527},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059438526103572)","index":144,"timestampMs":1586977576620},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059538023514154)","index":145,"timestampMs":1586977600342},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700061097583050871)","index":146,"timestampMs":1586977972170},{"description":"#bot-testing message [\"> Yup; however, we're gonna ma...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062058405953678)","index":147,"timestampMs":1586978201248},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062189503119381)","index":148,"timestampMs":1586978232504},{"description":"#bot-testing message [\"<@363774203960360961>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062400774275204)","index":149,"timestampMs":1586978282875},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700063628711166054)","index":150,"timestampMs":1586978575638},{"description":"#bot-testing message [\"<@!321092785921064961> is the ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700064631778967634)","index":151,"timestampMs":1586978814788},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700064632144003103)","index":152,"timestampMs":1586978814875},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700118599003668510)","index":153,"timestampMs":1586991681577},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700335319349985310)","index":154,"timestampMs":1587043351734},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700335919315550299)","index":155,"timestampMs":1587043494777},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700365992571699350)","index":156,"timestampMs":1587050664800},{"description":"#bot-testing message [\"<@665203331639148553>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700366555233517630)","index":157,"timestampMs":1587050798949},{"description":"#bot-testing message [\"<@665203331639148553>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700367514638483537)","index":158,"timestampMs":1587051027689},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700369922630615040)","index":159,"timestampMs":1587051601799},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700370207419662458)","index":160,"timestampMs":1587051669698},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700370372230643763)","index":161,"timestampMs":1587051708992},{"description":"#bot-testing message [\"<@!699326460120530944> you da ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371208880914563)","index":162,"timestampMs":1587051908465},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371209241624656)","index":163,"timestampMs":1587051908551},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371558480216124)","index":164,"timestampMs":1587051991816},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397237930295386)","index":165,"timestampMs":1587058114274},{"description":"#bot-testing message [\"<@!321092785921064961> can you...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397481799974962)","index":166,"timestampMs":1587058172417},{"description":"#bot-testing message [\"<@665203331639148553>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397482362011769)","index":167,"timestampMs":1587058172551},{"description":"#bot-testing message [\"<@474405294307278880>, Update ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397866581229620)","index":168,"timestampMs":1587058264156},{"description":"#bot-testing message [\"<@474405294307278880>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397927478067221)","index":169,"timestampMs":1587058278675},{"description":"#bot-testing message [\"👀 nice one <@!474405294307278...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397997707755530)","index":170,"timestampMs":1587058295419},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398207733334077)","index":171,"timestampMs":1587058345493},{"description":"#bot-testing message [\"<@!321092785921064961> I just ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398301412982965)","index":172,"timestampMs":1587058367828},{"description":"#bot-testing message [\"<@665203331639148553>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398301727555604)","index":173,"timestampMs":1587058367903},{"description":"#bot-testing message [\"Btw <@!665203331639148553> idk...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700399163313094746)","index":174,"timestampMs":1587058573321},{"description":"Reacted `❤️` to message [695669843034243134](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":175,"timestampMs":1585931015500},{"description":"Reacted `👍` to message [696454968831508630](https://discordapp.com/channels/695344751490236486/695344752031432766/696454968831508630)","index":176,"timestampMs":1586118204077},{"description":"Reacted `👍` to message [696455224532926464](https://discordapp.com/channels/695344751490236486/695344752031432766/696455224532926464)","index":177,"timestampMs":1586118265041},{"description":"Reacted `👍` to message [699021694240686190](https://discordapp.com/channels/695344751490236486/695344752031432766/699021694240686190)","index":178,"timestampMs":1586730159102},{"description":"Reacted `👍` to message [699025335148216410](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":179,"timestampMs":1586731027162},{"description":"Reacted `👍` to message [695669843034243134](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":180,"timestampMs":1585931015500},{"description":"Reacted `👍` to message [699025335148216410](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":181,"timestampMs":1586731027162},{"description":"Reacted `👍` to message [699326575627206778](https://discordapp.com/channels/695344751490236486/695344752031432766/699326575627206778)","index":182,"timestampMs":1586802848489},{"description":"Reacted `💯` to message [696730540039995493](https://discordapp.com/channels/695344751490236486/695344752031432766/696730540039995493)","index":183,"timestampMs":1586183905373},{"description":"Reacted `💯` to message [698965418370400296](https://discordapp.com/channels/695344751490236486/695344752031432766/698965418370400296)","index":184,"timestampMs":1586716741889},{"description":"Reacted `🔥` to message [698969730580742174](https://discordapp.com/channels/695344751490236486/695344752031432766/698969730580742174)","index":185,"timestampMs":1586717770000},{"description":"Reacted `🔥` to message [698973708316049488](https://discordapp.com/channels/695344751490236486/695344752031432766/698973708316049488)","index":186,"timestampMs":1586718718366},{"description":"Reacted `🔥` to message [698921390845198426](https://discordapp.com/channels/695344751490236486/695344752031432766/698921390845198426)","index":187,"timestampMs":1586706244909},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":188,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":189,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":190,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":191,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":192,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":193,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":194,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":195,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":196,"timestampMs":1586643849022},{"description":"Reacted `👍` to message [696427343220047872](https://discordapp.com/channels/695344751490236486/696420039141752863/696427343220047872)","index":197,"timestampMs":1586111617618},{"description":"Reacted `👍` to message [696441890048049232](https://discordapp.com/channels/695344751490236486/696420039141752863/696441890048049232)","index":198,"timestampMs":1586115085852},{"description":"Reacted `👍` to message [699123164340551691](https://discordapp.com/channels/695344751490236486/696420039141752863/699123164340551691)","index":199,"timestampMs":1586754351459},{"description":"Reacted `👍` to message [700087985634541678](https://discordapp.com/channels/695344751490236486/696420039141752863/700087985634541678)","index":200,"timestampMs":1586984382781},{"description":"Reacted `🔥` to message [699560532046250034](https://discordapp.com/channels/695344751490236486/696420039141752863/699560532046250034)","index":201,"timestampMs":1586858628046},{"description":"Reacted `🔥` to message [699275497984622760](https://discordapp.com/channels/695344751490236486/696420039141752863/699275497984622760)","index":202,"timestampMs":1586790670630},{"description":"Reacted `🔥` to message [700064920104075394](https://discordapp.com/channels/695344751490236486/696420039141752863/700064920104075394)","index":203,"timestampMs":1586978883530},{"description":"Reacted `👍` to message [699284090607763506](https://discordapp.com/channels/695344751490236486/696420197644632116/699284090607763506)","index":204,"timestampMs":1586792719271},{"description":"Reacted `👍` to message [699822779670724650](https://discordapp.com/channels/695344751490236486/698942081858666527/699822779670724650)","index":205,"timestampMs":1586921152752},{"description":"Reacted `👍` to message [700040376085381152](https://discordapp.com/channels/695344751490236486/700023168995295233/700040376085381152)","index":206,"timestampMs":1586973031780},{"description":"Reacted `💯` to message [700040917926543422](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":207,"timestampMs":1586973160965},{"description":"Reacted `💯` to message [700040917926543422](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":208,"timestampMs":1586973160965},{"description":"Reacted `🔥` to message [700039441799970969](https://discordapp.com/channels/695344751490236486/700023168995295233/700039441799970969)","index":209,"timestampMs":1586972809029},{"description":"[comment](https://github.com/aracred/AraCred/issues/14#issuecomment-612693703) on [#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":746,"timestampMs":1586735225000},{"description":"[comment](https://github.com/aracred/AraCred/issues/14#issuecomment-612962510) on [#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":747,"timestampMs":1586793675000},{"description":"[comment](https://github.com/aracred/AraCred/issues/16#issuecomment-613151713) on [#16](https://github.com/aracred/AraCred/issues/16): AraCred Dogfooding","index":748,"timestampMs":1586821838000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-612842722) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":749,"timestampMs":1586773257000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-612918834) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":750,"timestampMs":1586787682000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-613069946) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":751,"timestampMs":1586808032000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613141085) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":752,"timestampMs":1586819514000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613146304) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":753,"timestampMs":1586820570000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613226248) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":754,"timestampMs":1586840296000},{"description":"[comment](https://github.com/aracred/AraCred/issues/25#issuecomment-613347004) on [#25](https://github.com/aracred/AraCred/issues/25): AraCred MVP","index":755,"timestampMs":1586858608000},{"description":"[comment](https://github.com/aracred/AraCred/issues/26#issuecomment-613797792) on [#26](https://github.com/aracred/AraCred/issues/26): Simple Token Calculations","index":756,"timestampMs":1586922019000},{"description":"[comment](https://github.com/aracred/TheSource/issues/3#issuecomment-613030762) on [#3](https://github.com/aracred/TheSource/issues/3): GUIDE: Setting up a Discord server with SourceCred and GitHub actions","index":757,"timestampMs":1586802750000},{"description":"[comment](https://github.com/aracred/bot/issues/3#issuecomment-614314292) on [#3](https://github.com/aracred/bot/issues/3): Add whitelisted channels environment variable","index":758,"timestampMs":1586990245000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-612563994) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":759,"timestampMs":1586666872000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-612990333) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":760,"timestampMs":1586797413000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613020677) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":761,"timestampMs":1586801390000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613024850) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":762,"timestampMs":1586801948000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613026757) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":763,"timestampMs":1586802204000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613028322) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":764,"timestampMs":1586802422000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-614088358) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":765,"timestampMs":1586962450000},{"description":"[comment](https://github.com/aracred/onboarding/issues/2#issuecomment-612630503) on [#2](https://github.com/aracred/onboarding/issues/2): AraCred Deployment","index":766,"timestampMs":1586704028000},{"description":"[comment](https://github.com/aracred/onboarding/issues/3#issuecomment-612642927) on [#3](https://github.com/aracred/onboarding/issues/3): User Onboarding Bot","index":767,"timestampMs":1586709561000},{"description":"[comment](https://github.com/aracred/onboarding/issues/4#issuecomment-613343876) on [#4](https://github.com/aracred/onboarding/issues/4): User Onboarding Survey","index":768,"timestampMs":1586858205000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612843090) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":769,"timestampMs":1586773337000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612844672) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":770,"timestampMs":1586773655000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612910606) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":771,"timestampMs":1586786432000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612911587) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":772,"timestampMs":1586786582000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612939366) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":773,"timestampMs":1586790511000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612942113) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":774,"timestampMs":1586790870000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-614058561) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":775,"timestampMs":1586959270000},{"description":"[comment](https://github.com/aracred/AraCred/pull/20#issuecomment-613089159) on [#20](https://github.com/aracred/AraCred/pull/20): Add Evalir to Aracred","index":776,"timestampMs":1586810690000},{"description":"[comment](https://github.com/aracred/bot/pull/9#issuecomment-614948916) on [#9](https://github.com/aracred/bot/pull/9): Added command namespace recognition - !ac [command]","index":777,"timestampMs":1587079943000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850216) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":778,"timestampMs":1587071400000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850385) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":779,"timestampMs":1587071419000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850667) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":780,"timestampMs":1587071453000},{"description":"[02e3a39](https://github.com/aracred/onboarding/commit/02e3a39d76183975fa9a0671de0c7922274b6abc): Initial commit","index":781,"timestampMs":1586666528000},{"description":"[1a16f1e](https://github.com/aracred/leaderboard/commit/1a16f1ec50e59e3baf9462677fa2c4f03ee2f9c8): Initial commit","index":782,"timestampMs":1586706188000},{"description":"[1a21759](https://github.com/aracred/comms/commit/1a21759b0bf3dbf3f524a23bf10c8e4a114def8c): Initial commit","index":783,"timestampMs":1586709195000},{"description":"[89f7cc8](https://github.com/aracred/governance/commit/89f7cc8cbfd2fe93bcdb22e979f918a288bd8668): Update README.md","index":784,"timestampMs":1586710102000},{"description":"[b48eec0](https://github.com/aracred/governance/commit/b48eec0b0acb2c42b9307e89f0c50fcd2b5e3fe9): Initial commit","index":785,"timestampMs":1586709961000},{"description":"[169704b](https://github.com/aracred/bot/commit/169704b1d09d4498ff0eaf2276bc40e79fffdf7e): Add bot guard for infinite loops","index":786,"timestampMs":1586921892000},{"description":"[1d8ee2b](https://github.com/aracred/bot/commit/1d8ee2b3aa6e25bcf60ec6e52bf5328c0866cdc5): Add testing for parsers & several bot enhancements","index":787,"timestampMs":1586930578000},{"description":"[23d2d9d](https://github.com/aracred/bot/commit/23d2d9d76214f6b6309676e2d369fe22f495943c): Rename procfile to Procfile","index":788,"timestampMs":1586920791000},{"description":"[2ac1a7e](https://github.com/aracred/bot/commit/2ac1a7e110486f19483abeff54c243335640c923): Update package.json","index":789,"timestampMs":1586921871000},{"description":"[2b91470](https://github.com/aracred/bot/commit/2b91470d79d6e707d2e8cb3a794ebe8c4d7b3484): Update procfile","index":790,"timestampMs":1586920549000},{"description":"[2c407f3](https://github.com/aracred/bot/commit/2c407f36d0c5b27d2c474b335cabb81cfe2edeca): v0.0.2 : add address command","index":791,"timestampMs":1586839193000},{"description":"[396e5f7](https://github.com/aracred/bot/commit/396e5f791be1c3cf258b08afc6111cea8a409634): Add hooks for linting, testing","index":792,"timestampMs":1586916947000},{"description":"[436819f](https://github.com/aracred/bot/commit/436819fc13564c1c553d1d70390daff05a9052e9): Setup jest config","index":793,"timestampMs":1586919065000},{"description":"[59aa572](https://github.com/aracred/bot/commit/59aa572835669dee12a533857e417b17ba7b45e5): Devops: Add monitoring logs to commands (#4)","index":794,"timestampMs":1586971104000},{"description":"[6738048](https://github.com/aracred/bot/commit/67380485711017726e26a1687668d3d85b0e5d41): Improve help command","index":795,"timestampMs":1586957209000},{"description":"[680e650](https://github.com/aracred/bot/commit/680e6502d527be2ddbd2bd73be5ddce9c5914e9b): Add utilities for development","index":796,"timestampMs":1586915756000},{"description":"[ad563e1](https://github.com/aracred/bot/commit/ad563e12ffae5d7b53764f2709b2da47a17aa18c): Remove git add from lint-staged","index":797,"timestampMs":1586916992000},{"description":"[af62937](https://github.com/aracred/bot/commit/af6293708734a500d9aeb65ece80c20d28d973d3): Create ci.yml","index":798,"timestampMs":1586932748000},{"description":"[b72e98f](https://github.com/aracred/bot/commit/b72e98f338ce136d49bbc775464fbe071df8c431): Update README.md","index":799,"timestampMs":1586934527000},{"description":"[b8c4dd2](https://github.com/aracred/bot/commit/b8c4dd20fe0e1d3e66edf0ecada1d03544106dbc): Made copies more user friendly","index":800,"timestampMs":1587052319000},{"description":"[b3e0e30](https://github.com/aracred/bot/commit/b3e0e30623418aaf8af913aed3c78c36e5e7c742): Validation: validate ethereum address (#8)","index":801,"timestampMs":1587075097000},{"description":"[d45cdea](https://github.com/aracred/bot/commit/d45cdeaaabc568712db4fd59c157084fc4819e19): Initial commit","index":802,"timestampMs":1586805309000},{"description":"[d601ad0](https://github.com/aracred/bot/commit/d601ad079de95e29fe5bd99dd225621e193b09a8): Add other utilties, procfile for heroku deployment","index":803,"timestampMs":1586918718000},{"description":"[d8f4083](https://github.com/aracred/bot/commit/d8f4083966d599198ff8f988f55ced0e2b91ba98): v0.0.1","index":804,"timestampMs":1586831849000},{"description":"[ddad212](https://github.com/aracred/bot/commit/ddad2121732e1f0646c5ab6d3d8fc51c431f94b8): Update help.js","index":805,"timestampMs":1586977731000},{"description":"[de56e09](https://github.com/aracred/bot/commit/de56e092581eb21affd70f681de349d461487d47): Update Procfile","index":806,"timestampMs":1586921823000},{"description":"[e41eb25](https://github.com/aracred/bot/commit/e41eb256be1cff6f8173bf1b4ab1e08d82680377): Merge branch 'master' of https://github.com/aracred/bot","index":807,"timestampMs":1586960050000},{"description":"[e370701](https://github.com/aracred/bot/commit/e3707010bd6cff203cbe2450f48d2ee7bbc5d155): Create README.md","index":808,"timestampMs":1586933937000},{"description":"[f8cc3c0](https://github.com/aracred/bot/commit/f8cc3c0cfe61b256ef079488a26d06b59f6f8ca0): Add .env.sample","index":809,"timestampMs":1586832132000},{"description":"[f1ec698](https://github.com/aracred/bot/commit/f1ec698041e4fdef5931f7928a751a8a45433b9f): Improve whitelisting","index":810,"timestampMs":1586958454000},{"description":"[05c78a8](https://github.com/aracred/website/commit/05c78a85d3b82074eb0e966c43eaf29f53e39426): updated secrets guide","index":811,"timestampMs":1586730565000},{"description":"[031a68e](https://github.com/aracred/website/commit/031a68eb5a45b70c806197b47783b1b4ae4332f0): design goals overview","index":812,"timestampMs":1586643786000},{"description":"[0c44b7c](https://github.com/aracred/website/commit/0c44b7c5b7ac2243b2fa984a6abc9c91762a8a33): Merge pull request #9 from aracred/docs2","index":813,"timestampMs":1586664558000},{"description":"[15e6db6](https://github.com/aracred/website/commit/15e6db685e730aa55697d6fc8f60e9006732d2db): Merge pull request #1 from aracred/docusaurus","index":814,"timestampMs":1586566020000},{"description":"[16456a0](https://github.com/aracred/website/commit/16456a0e6dce09102122b50f42b185c330bb7b25): checkpoint","index":815,"timestampMs":1586710826000},{"description":"[18c5aee](https://github.com/aracred/website/commit/18c5aee0a819fd4f7877321af5fd04791f85c6f8): created manual deployment guide draft","index":816,"timestampMs":1586727748000},{"description":"[120b10d](https://github.com/aracred/website/commit/120b10d34d5e804b21984569c113e37036efe669): removed blog from footer","index":817,"timestampMs":1586570955000},{"description":"[26b69c0](https://github.com/aracred/website/commit/26b69c05b19e8c57f2d16f77ab4d86b76247ce1b): updated diagrams and whiteboard sessions","index":818,"timestampMs":1586662685000},{"description":"[2a6a498](https://github.com/aracred/website/commit/2a6a498e1f06f55bc8d72380017b4d4060e27123): Create CNAME","index":819,"timestampMs":1586127122000},{"description":"[2b6ed00](https://github.com/aracred/website/commit/2b6ed00bd26907f91649e266613daba56cbaa0ee): stashing notes","index":820,"timestampMs":1586658983000},{"description":"[2cee732](https://github.com/aracred/website/commit/2cee732bc11b712814855cfb1d9b5b279cef6fb9): Delete CNAME","index":821,"timestampMs":1586566694000},{"description":"[2d9e5bd](https://github.com/aracred/website/commit/2d9e5bd17dbe78235bca6bfd44b6a910d3c4a951): Merge pull request #6 from aracred/docs2","index":822,"timestampMs":1586656936000},{"description":"[2e4d02b](https://github.com/aracred/website/commit/2e4d02b5022b744b43eba4a032fa855b765aa0ad): Merge pull request #14 from aracred/docs2","index":823,"timestampMs":1586797014000},{"description":"[37e3b72](https://github.com/aracred/website/commit/37e3b7251566699d4341b3bdbb81ec8f554f7d87): Merge pull request #13 from aracred/docs2","index":824,"timestampMs":1586727823000},{"description":"[39ac367](https://github.com/aracred/website/commit/39ac367cc0a3e55366f190fe158a8517f97c2778): Update README.md","index":825,"timestampMs":1586103464000},{"description":"[30d221d](https://github.com/aracred/website/commit/30d221dce50b378b1c7305bda09bea3f77887415): didn't actually add users section","index":826,"timestampMs":1586633871000},{"description":"[49af56b](https://github.com/aracred/website/commit/49af56b16491699e672947ed52ce86dcb3f9d9c2): updated docs to include links to baseURL","index":827,"timestampMs":1586647160000},{"description":"[4b792e8](https://github.com/aracred/website/commit/4b792e8ce9c473dd059f633bec6659a18a6d8ff7): checkpoint","index":828,"timestampMs":1586660251000},{"description":"[51c24fd](https://github.com/aracred/website/commit/51c24fd07be9e40f534f48d43f936d829ac7b085): added tabs!","index":829,"timestampMs":1586649927000},{"description":"[5a3bda0](https://github.com/aracred/website/commit/5a3bda08dd0c3b937345c449229b07241d70fb09): Fix hero button in dark mode","index":830,"timestampMs":1586855777000},{"description":"[5e5171d](https://github.com/aracred/website/commit/5e5171d6fb098184d18a44589e6cd4fd72c89c80): getting started button link update","index":831,"timestampMs":1586571027000},{"description":"[61741f2](https://github.com/aracred/website/commit/61741f2ee4388880504f3a299dbd9c11698cc7dd): giving credit where credit is due","index":832,"timestampMs":1586644808000},{"description":"[62452c3](https://github.com/aracred/website/commit/62452c343ffd843e938714bc2e87d5214d7dd315): added a gratitude section","index":833,"timestampMs":1586650718000},{"description":"[6caa3ed](https://github.com/aracred/website/commit/6caa3ed4ed86f8414354719138e0121db2d6a0dc): Initial commit","index":834,"timestampMs":1586103441000},{"description":"[6d3765a](https://github.com/aracred/website/commit/6d3765a6c17e93aaddcd0f3fb8ace45c20bda183): Update README.md","index":835,"timestampMs":1586568293000},{"description":"[6e7bfcd](https://github.com/aracred/website/commit/6e7bfcd7b00408f64472201ac06ea499e02e6fad): updated docs to mdx","index":836,"timestampMs":1586646704000},{"description":"[6f93833](https://github.com/aracred/website/commit/6f93833ab9fbe162b81bb768df2d85c30ad06ab8): Merge pull request #8 from aracred/docs2","index":837,"timestampMs":1586663015000},{"description":"[7cd874a](https://github.com/aracred/website/commit/7cd874acd8a0f9009911452d1c0b363cb13f6669): _","index":838,"timestampMs":1586639136000},{"description":"[85eeea1](https://github.com/aracred/website/commit/85eeea117f1160d5b9da37473b35598a7c76b5f2): added DAO stuff","index":839,"timestampMs":1586663769000},{"description":"[862fd7f](https://github.com/aracred/website/commit/862fd7fa57bf683b777fc8f3789b1df4aea08e9f): updated stuff","index":840,"timestampMs":1586652307000},{"description":"[892f2bf](https://github.com/aracred/website/commit/892f2bf564a1dbbc4215f2ee677ac9fc2aa763e3): added docs placeholders","index":841,"timestampMs":1586570353000},{"description":"[97158bd](https://github.com/aracred/website/commit/97158bddc34b68675ca0d7376d36259a03aef6ac): added AraCred overview","index":842,"timestampMs":1586638395000},{"description":"[9b553ff](https://github.com/aracred/website/commit/9b553ff5e3ec727ed0dd45321971a9911a1f04ad): the code works!","index":843,"timestampMs":1586657067000},{"description":"[9fc6edf](https://github.com/aracred/website/commit/9fc6edf1983584d9e8336ae9cba525ba92e3249b): generalized the token market","index":844,"timestampMs":1586649206000},{"description":"[a631821](https://github.com/aracred/website/commit/a631821f95e1a3b679073cd25647784f863699ec): removed scratchpad","index":845,"timestampMs":1586729040000},{"description":"[a794a7d](https://github.com/aracred/website/commit/a794a7d8a4034af56c031a5a4a85300ad488871e): moved stuff to main directory","index":846,"timestampMs":1586567498000},{"description":"[a86004a](https://github.com/aracred/website/commit/a86004ae7a81b6150ca9decebdd05ab7d4151214): Beautified the website!","index":847,"timestampMs":1586855462000},{"description":"[a180ef1](https://github.com/aracred/website/commit/a180ef16d0fb9e6adbb95731fcdd0e84955805d3): _","index":848,"timestampMs":1586568912000},{"description":"[a2421f5](https://github.com/aracred/website/commit/a2421f56156e52f5b7138ff17678e3c13e13a2f1): basic aragon and sourcecred overviews","index":849,"timestampMs":1586640470000},{"description":"[a380b67](https://github.com/aracred/website/commit/a380b67f78535ff8cd03945a60f98400e084a525): Update README.md","index":850,"timestampMs":1586111771000},{"description":"[aa9b13f](https://github.com/aracred/website/commit/aa9b13f64574bcf35312c9c6e828986ce75aff16): _","index":851,"timestampMs":1586569076000},{"description":"[ace98dc](https://github.com/aracred/website/commit/ace98dcfcfaeffae7c2fc2618af5281d06129330): starting to add market dynamic info","index":852,"timestampMs":1586648621000},{"description":"[bb9844b](https://github.com/aracred/website/commit/bb9844bd3a996039c00d44054f3450fcdc905d22): Update README.md","index":853,"timestampMs":1586111689000},{"description":"[bd29ad9](https://github.com/aracred/website/commit/bd29ad9bca1ac4c5f098c091bce6ea0824776115): added carl to the thanks section","index":854,"timestampMs":1586651543000},{"description":"[c4fa771](https://github.com/aracred/website/commit/c4fa771d6e61d74c5f1e702dd238ebbb4b538be8): added whiteboard session to notes","index":855,"timestampMs":1586661631000},{"description":"[c515036](https://github.com/aracred/website/commit/c515036f8ba1937cda94092e87b0a13545d86829): added note about next action items for deployment docs","index":856,"timestampMs":1586739277000},{"description":"[c2bf0a1](https://github.com/aracred/website/commit/c2bf0a118855a87f962a7bda788c73120c64940b): added a cryptoeconomics 101 blog post","index":857,"timestampMs":1586644660000},{"description":"[c3d5044](https://github.com/aracred/website/commit/c3d50445a0194dac7d52baaaa8aa3dbf2bd77173): added guide on approving token minting","index":858,"timestampMs":1586792089000},{"description":"[cda86c7](https://github.com/aracred/website/commit/cda86c72f131bd0ba804c57d20be41d8f017cf3d): fixed edit link thing","index":859,"timestampMs":1586645107000},{"description":"[d49ea3b](https://github.com/aracred/website/commit/d49ea3b27586437f262b74132224b280597e67bd): before adding live code plugin","index":860,"timestampMs":1586656870000},{"description":"[d9900e9](https://github.com/aracred/website/commit/d9900e922c90ce1d244761f1e2ad2fc4fb65f298): added guide on viewing your cred graph","index":861,"timestampMs":1586790290000},{"description":"[d1a721f](https://github.com/aracred/website/commit/d1a721f8eed2805dd0c85d8d9fef06032f04c056): Update README.md","index":862,"timestampMs":1586571301000},{"description":"[db97114](https://github.com/aracred/website/commit/db97114fd0dbcd580c0a88991f4b6991d0bef4e5): starting to docusaurus","index":863,"timestampMs":1586565903000},{"description":"[dd68745](https://github.com/aracred/website/commit/dd687457b7a8178a907116c7880a1bb498bb4131): Merge pull request #3 from aracred/users-showcase","index":864,"timestampMs":1586633977000},{"description":"[df4aca3](https://github.com/aracred/website/commit/df4aca3876a771513b7e5d9a0c28517746508961): now the edit link is fixed","index":865,"timestampMs":1586645253000},{"description":"[e97f15b](https://github.com/aracred/website/commit/e97f15b28e12292f7df8de6515a27b63f989acfb): updated README deployment instructions","index":866,"timestampMs":1586567811000},{"description":"[e9a6820](https://github.com/aracred/website/commit/e9a68209df1f07b4f9f28319e98dcade12ebde80): updated images","index":867,"timestampMs":1586664528000},{"description":"[e2dddf8](https://github.com/aracred/website/commit/e2dddf8e3303043dae6bf8efc44777965d5fde9a): Merge pull request #4 from aracred/docs2","index":868,"timestampMs":1586645187000},{"description":"[ee80ee1](https://github.com/aracred/website/commit/ee80ee18c4c10447c5e3d180c7cb87d177cf6bab): Better paddings and illustrations","index":869,"timestampMs":1586874980000},{"description":"[f9f8620](https://github.com/aracred/website/commit/f9f862051f1b8310f274b4e8e8c20604a75bda59): Merge pull request #5 from aracred/docs2","index":870,"timestampMs":1586654110000},{"description":"[fcacf68](https://github.com/aracred/website/commit/fcacf68e748f6ee1883db51392267fc8537db08b): updated docs","index":871,"timestampMs":1586570850000},{"description":"[07e0e5f](https://github.com/aracred/TheSource/commit/07e0e5f00e18e00a12892b47bd3f5b87418377d5): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":872,"timestampMs":1584166244000},{"description":"[014093e](https://github.com/aracred/TheSource/commit/014093e17900e748bb8f82656443ec621bd8a658): Fix: trigger on master / cronjob","index":873,"timestampMs":1582978132000},{"description":"[0235016](https://github.com/aracred/TheSource/commit/02350169d0e77e280968a062a1e98a60a0d4c5d8): Update generate-cred.yml","index":874,"timestampMs":1586104482000},{"description":"[0245a40](https://github.com/aracred/TheSource/commit/0245a4002a35c2adccfed1f68a675c30ba871ba5): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":875,"timestampMs":1583453629000},{"description":"[0e46884](https://github.com/aracred/TheSource/commit/0e468843191ad3a24ff5b803b2e388a12e88a289): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":876,"timestampMs":1585678434000},{"description":"[1582ec3](https://github.com/aracred/TheSource/commit/1582ec34530ff6b7055382319336acc3f82de567): Merge pull request #22 from burrrata/patch-1","index":877,"timestampMs":1583619788000},{"description":"[15a8127](https://github.com/aracred/TheSource/commit/15a8127bc5402c7224bc592f890a5bd7f793c6a5): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":878,"timestampMs":1585354520000},{"description":"[1823aa7](https://github.com/aracred/TheSource/commit/1823aa73078796ecf98dd56d9c134ccf2192e686): Add new members and update repo config","index":879,"timestampMs":1585275196000},{"description":"[11fcd09](https://github.com/aracred/TheSource/commit/11fcd09a0cde08af08b5c5c951f54c150cf47ea1): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":880,"timestampMs":1585246440000},{"description":"[1222e49](https://github.com/aracred/TheSource/commit/1222e49b4269f15b2c71cfe4b62b1333abeea581): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":881,"timestampMs":1583367223000},{"description":"[12cf0f1](https://github.com/aracred/TheSource/commit/12cf0f16d406f14c2597abc130c4d2bfa9927f32): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":882,"timestampMs":1585807902000},{"description":"[12ddd4e](https://github.com/aracred/TheSource/commit/12ddd4e35607c0184b898c898e26e45c6017642d): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":883,"timestampMs":1584727971000},{"description":"[1363441](https://github.com/aracred/TheSource/commit/13634414337e730fbcb403e2657a8007347ddd8d): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":884,"timestampMs":1585268012000},{"description":"[13fc50d](https://github.com/aracred/TheSource/commit/13fc50d22e2353cf2bb38948cae4fb5fb591ce6c): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":885,"timestampMs":1584490521000},{"description":"[1a79294](https://github.com/aracred/TheSource/commit/1a7929462fc35448408f0d854a6c8c898c2db94f): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":886,"timestampMs":1584425424000},{"description":"[1b5127e](https://github.com/aracred/TheSource/commit/1b5127e0416b329fc4dcd1d988d29489bea9016f): Merge pull request #21 from c0mput3rxz/patch-1","index":887,"timestampMs":1583545099000},{"description":"[1cac15e](https://github.com/aracred/TheSource/commit/1cac15ecae5e636fd5d049fc5993ccd113126e41): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":888,"timestampMs":1584404096000},{"description":"[1dc4a2c](https://github.com/aracred/TheSource/commit/1dc4a2c23525043a7b6e32a79837cb6a5a62fd97): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":889,"timestampMs":1584987191000},{"description":"[1eed38c](https://github.com/aracred/TheSource/commit/1eed38c4cebd63ab6fc9537564a5304a870caa0c): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":890,"timestampMs":1585872826000},{"description":"[1f350ea](https://github.com/aracred/TheSource/commit/1f350ead22cb503932ec36b9d21b735eb97eb256): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":891,"timestampMs":1584231333000},{"description":"[25c16bb](https://github.com/aracred/TheSource/commit/25c16bb85801279196018b44ec0db0834fadc4a2): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":892,"timestampMs":1584079976000},{"description":"[27b2bf3](https://github.com/aracred/TheSource/commit/27b2bf3d7da83e04295aa1c2297e50ce8157f435): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":893,"timestampMs":1584555406000},{"description":"[28b0e3f](https://github.com/aracred/TheSource/commit/28b0e3f2d8fd42569eb803d10435aa8c0edf28f4): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":894,"timestampMs":1585159980000},{"description":"[2074791](https://github.com/aracred/TheSource/commit/2074791c680ee3d896c6c819ee0244719a7e510c): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":895,"timestampMs":1582941733000},{"description":"[21196b9](https://github.com/aracred/TheSource/commit/21196b9342e552cc4fc6a9f213ea42768f3590d6): Merge pull request #1 from pythonpete32/patch-2","index":896,"timestampMs":1586104041000},{"description":"[2251687](https://github.com/aracred/TheSource/commit/225168780b86a4b41d38845653c5d8759d1d37ad): Automated deployment to update cred in /github/workspace/docs 2020-02-17","index":897,"timestampMs":1581915151000},{"description":"[22f57e7](https://github.com/aracred/TheSource/commit/22f57e7b323b0800c218b270980286c105ff7760): Update README.md","index":898,"timestampMs":1586106320000},{"description":"[2a1204b](https://github.com/aracred/TheSource/commit/2a1204b44f44d6d93cf952e1804aef25ffbdd78f): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":899,"timestampMs":1585365876000},{"description":"[2d44191](https://github.com/aracred/TheSource/commit/2d44191a996951ccbed0009280899614d63174c9): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":900,"timestampMs":1585276073000},{"description":"[2f42a2a](https://github.com/aracred/TheSource/commit/2f42a2a3916fe6ede97f1fac9adc1897fcbaa2be): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":901,"timestampMs":1585397520000},{"description":"[2fad9aa](https://github.com/aracred/TheSource/commit/2fad9aab6897201e6bc353b9746c03d1e728d433): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":902,"timestampMs":1584274368000},{"description":"[3472396](https://github.com/aracred/TheSource/commit/34723961199565937493834071665b871a632d5d): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":903,"timestampMs":1584382440000},{"description":"[35bf082](https://github.com/aracred/TheSource/commit/35bf0829c068aa20de51466ea118f7547707de00): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":904,"timestampMs":1585894360000},{"description":"[364068e](https://github.com/aracred/TheSource/commit/364068ec8db86b378d630f591da3a02de8708798): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":905,"timestampMs":1585095460000},{"description":"[36d7098](https://github.com/aracred/TheSource/commit/36d7098c5f0c400dddec1e654523a2800782b78a): Fix cache path (#8)","index":906,"timestampMs":1581914566000},{"description":"[37b357c](https://github.com/aracred/TheSource/commit/37b357cb88cf608d20589ce6ee51404561bb4b1c): Trigger build","index":907,"timestampMs":1581914856000},{"description":"[380e74d](https://github.com/aracred/TheSource/commit/380e74d47b6bfd2c48d5690093ab03e44b92d991): Run with cache (#4)","index":908,"timestampMs":1581911765000},{"description":"[38f3240](https://github.com/aracred/TheSource/commit/38f3240786ceec5b4c03d7a5ce0faa02512a8cde): cleaned things up","index":909,"timestampMs":1586106153000},{"description":"[391b32b](https://github.com/aracred/TheSource/commit/391b32bfdb5ae37d2ce42d32319fbadde72663f3): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":910,"timestampMs":1583604631000},{"description":"[392e601](https://github.com/aracred/TheSource/commit/392e601d3179506dfe7ec0ad20cd5f679696e66e): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":911,"timestampMs":1583712856000},{"description":"[39b0a90](https://github.com/aracred/TheSource/commit/39b0a902c1c17512a536380503a506fc3ca615bb): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":912,"timestampMs":1585505534000},{"description":"[39c6daa](https://github.com/aracred/TheSource/commit/39c6daaa5fca6305b908cdd28811107eba6bcbe3): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":913,"timestampMs":1584058539000},{"description":"[30014c1](https://github.com/aracred/TheSource/commit/30014c11841c9a605cc94d517ece6b867afd8cef): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":914,"timestampMs":1583172648000},{"description":"[30758d0](https://github.com/aracred/TheSource/commit/30758d04aa4da97fc0aced1fa22cbdee4a82c792): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":915,"timestampMs":1584857389000},{"description":"[309a895](https://github.com/aracred/TheSource/commit/309a89586da5e2d44b48a607c9334aef6f6db3fb): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":916,"timestampMs":1583928647000},{"description":"[311bf26](https://github.com/aracred/TheSource/commit/311bf26aa5268a067b0bfc8708a922d2fd3d0a81): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":917,"timestampMs":1582959644000},{"description":"[317ffa1](https://github.com/aracred/TheSource/commit/317ffa1471a0179007b87f93aac2223666443d45): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":918,"timestampMs":1584965374000},{"description":"[3ab888c](https://github.com/aracred/TheSource/commit/3ab888c62c6fa64080e675c1f5146e156635ee6c): Merge pull request #18 from mzargham/patch-1","index":919,"timestampMs":1583124213000},{"description":"[3b4871c](https://github.com/aracred/TheSource/commit/3b4871c09b67498e31575b8aaa9c09443d142a03): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":920,"timestampMs":1584511968000},{"description":"[3b5a471](https://github.com/aracred/TheSource/commit/3b5a4715a9790e23a2e35d783d691e8d5ee58f80): Update project.json","index":921,"timestampMs":1586105522000},{"description":"[3b8e4f5](https://github.com/aracred/TheSource/commit/3b8e4f54845388851293b26053f4df65b4dc98d1): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":922,"timestampMs":1583280857000},{"description":"[3bc9934](https://github.com/aracred/TheSource/commit/3bc9934834b8a65291439cbba2daf061448e30fe): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":923,"timestampMs":1584101474000},{"description":"[3e5e144](https://github.com/aracred/TheSource/commit/3e5e14457fa143425d264a4fa941591d19730ce3): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":924,"timestampMs":1583086481000},{"description":"[3f47f07](https://github.com/aracred/TheSource/commit/3f47f07723b97f0311f32b78da99358d2c6affb4): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":925,"timestampMs":1583259010000},{"description":"[44cf0fb](https://github.com/aracred/TheSource/commit/44cf0fbba18bf392a44962faed1e1300ed6fa459): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":926,"timestampMs":1585548726000},{"description":"[44c8444](https://github.com/aracred/TheSource/commit/44c844475c5e2beb5acdefc7e4cd54e90d2d84e2): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":927,"timestampMs":1585700008000},{"description":"[4639ec8](https://github.com/aracred/TheSource/commit/4639ec8dba12e8c7d3b0bf589b8c8a09c522ae47): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":928,"timestampMs":1585484037000},{"description":"[48e5b44](https://github.com/aracred/TheSource/commit/48e5b4467c6107040c107d55bc2fbe07a57ea3a0): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":929,"timestampMs":1585311128000},{"description":"[4003769](https://github.com/aracred/TheSource/commit/4003769a8d62ca41d0d18d2bd72204b1d278d5b9): Add mZ (me) to identities","index":930,"timestampMs":1583107086000},{"description":"[407f5d0](https://github.com/aracred/TheSource/commit/407f5d0adffd9ef41bff0bdbfb06f67213accea9): Merge a802f7c669324c951f6554fcf391f886ba3150f8 into 2074791c680ee3d896c6c819ee0244719a7e510c","index":931,"timestampMs":1582959287000},{"description":"[419d39d](https://github.com/aracred/TheSource/commit/419d39d87eb31965a8f5775075cb80be6a57abd6): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":932,"timestampMs":1585440813000},{"description":"[41e6727](https://github.com/aracred/TheSource/commit/41e67273af614a1014bfb58bf6ca1b1cee1e6a8a): Update project.json","index":933,"timestampMs":1586112503000},{"description":"[432042f](https://github.com/aracred/TheSource/commit/432042f6f965bb113ad50950cfdbb82c44f0dc59): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":934,"timestampMs":1583129436000},{"description":"[4a90734](https://github.com/aracred/TheSource/commit/4a90734832ae4ad328fc062712e2deca88d7dcc4): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":935,"timestampMs":1585224759000},{"description":"[4b4c9ea](https://github.com/aracred/TheSource/commit/4b4c9ea9705465d39f33b39ea39819c9c77aa78b): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":936,"timestampMs":1585980739000},{"description":"[4c0f6c1](https://github.com/aracred/TheSource/commit/4c0f6c1fe42e875f8cd6a4be4fa88be63052d149): Merge pull request #15 from AlexMasmej/patch-1","index":937,"timestampMs":1583096048000},{"description":"[4ecd902](https://github.com/aracred/TheSource/commit/4ecd9028dbcbb9fbf51a22a30fc7af21bde61d33): Merge 37b357cb88cf608d20589ce6ee51404561bb4b1c into bbca4d024098c749b7064b70c24c416061255c75","index":938,"timestampMs":1581914897000},{"description":"[554c964](https://github.com/aracred/TheSource/commit/554c96438fdbee2031b8b5ac16aa2d6db6a7f40f): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":939,"timestampMs":1584209897000},{"description":"[56172b6](https://github.com/aracred/TheSource/commit/56172b6087400fa81c13f39f37b23ec11de3c9b2): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":940,"timestampMs":1585937519000},{"description":"[576bc68](https://github.com/aracred/TheSource/commit/576bc68e63d6232f6c78bdd38e66da8585c04b0c): Update generate-cred.yml","index":941,"timestampMs":1586104299000},{"description":"[578544d](https://github.com/aracred/TheSource/commit/578544d0557614c00780089fa9f8343950f977fc): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":942,"timestampMs":1585613634000},{"description":"[509d8c0](https://github.com/aracred/TheSource/commit/509d8c03b1a67129a3e98073dd24f93723cdfe41): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":943,"timestampMs":1585656841000},{"description":"[50d289e](https://github.com/aracred/TheSource/commit/50d289eff07e8033e20cd60a4670c798dea24b71): Update README.md","index":944,"timestampMs":1586109721000},{"description":"[5130862](https://github.com/aracred/TheSource/commit/51308621ec2843350852fd31f8c0aa08d6d6a809): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":945,"timestampMs":1585591899000},{"description":"[5afb4e0](https://github.com/aracred/TheSource/commit/5afb4e08170c1bd2e9f5fb4dd42c6ef5e2d23878): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":946,"timestampMs":1585116577000},{"description":"[5b85a74](https://github.com/aracred/TheSource/commit/5b85a7405489f720ed0b9cb5150c2619d45c9e9d): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":947,"timestampMs":1583820607000},{"description":"[5c621ee](https://github.com/aracred/TheSource/commit/5c621ee4c644713a2627afbfed745482fe5525ef): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":948,"timestampMs":1584619902000},{"description":"[5c8e695](https://github.com/aracred/TheSource/commit/5c8e695ad340e65e85862dc8202d17e73d95bc3e): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":949,"timestampMs":1584943893000},{"description":"[6414f44](https://github.com/aracred/TheSource/commit/6414f44dff41af4a83f6ce0de71d809bd0482d00): fixed syntax error","index":950,"timestampMs":1583122040000},{"description":"[6552409](https://github.com/aracred/TheSource/commit/65524097ed5de3a815e989bd420e38177fe70bca): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":951,"timestampMs":1584187884000},{"description":"[65d2ca3](https://github.com/aracred/TheSource/commit/65d2ca343c51020478094ba87b5db4af6464741a): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":952,"timestampMs":1584123231000},{"description":"[67d4622](https://github.com/aracred/TheSource/commit/67d46229489309035b968391e6d14611ebd5c3ff): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":953,"timestampMs":1585008772000},{"description":"[69d1fb7](https://github.com/aracred/TheSource/commit/69d1fb79b9680f7ec5e8554f2a8c0f81d74d9a9c): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":954,"timestampMs":1584339043000},{"description":"[636ec6a](https://github.com/aracred/TheSource/commit/636ec6a16064c8c33eb4763375d53ac5d8bd1a10): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":955,"timestampMs":1583669536000},{"description":"[6a8bfca](https://github.com/aracred/TheSource/commit/6a8bfca0c936f304cc9a2a3399676be46aea9960): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":956,"timestampMs":1584252719000},{"description":"[6b96998](https://github.com/aracred/TheSource/commit/6b96998e7c2f8ce52dc09ebc9ea524d07debe38e): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":957,"timestampMs":1584360709000},{"description":"[6d51ee8](https://github.com/aracred/TheSource/commit/6d51ee836e10e9d7b38006f5e496655ae18ad368): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":958,"timestampMs":1585915944000},{"description":"[749f1e4](https://github.com/aracred/TheSource/commit/749f1e4c55deee2c1b640348b5965f5a4afd2886): Merge pull request #24 from MetaFam/update-members","index":959,"timestampMs":1585275681000},{"description":"[7860137](https://github.com/aracred/TheSource/commit/78601376522c329c0940754020ff4654ffe937b8): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":960,"timestampMs":1585462336000},{"description":"[7931cf2](https://github.com/aracred/TheSource/commit/7931cf20b5146bca68e51d26cdebade9a1d3a662): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":961,"timestampMs":1583755944000},{"description":"[71e0846](https://github.com/aracred/TheSource/commit/71e08464a654b37b05fe5349649a03f457933fa1): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":962,"timestampMs":1584663156000},{"description":"[7b6d616](https://github.com/aracred/TheSource/commit/7b6d61687e57d15a45d195b1edb567451a30db29): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":963,"timestampMs":1584598257000},{"description":"[7b9dca5](https://github.com/aracred/TheSource/commit/7b9dca52443325803e66cf596d274a0b11d252eb): updated gh actions file","index":964,"timestampMs":1586106389000},{"description":"[7d1f6e2](https://github.com/aracred/TheSource/commit/7d1f6e2d13ab467719f287802b16e799deeb5e26): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":965,"timestampMs":1585332629000},{"description":"[7dc4514](https://github.com/aracred/TheSource/commit/7dc4514cd415cc926827fe02cb2891b8d6b80e5d): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":966,"timestampMs":1583799279000},{"description":"[7dd45c9](https://github.com/aracred/TheSource/commit/7dd45c9416c703d549b6e278b7bfbe75053b1ca0): Initial commit","index":967,"timestampMs":1581898623000},{"description":"[7ff7782](https://github.com/aracred/TheSource/commit/7ff7782489b7894149cc5f211d9ddafcf84918e9): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":968,"timestampMs":1583496697000},{"description":"[842296b](https://github.com/aracred/TheSource/commit/842296b74203dbd599856a16880adcc904bd5b01): add thanks emoji","index":969,"timestampMs":1583106975000},{"description":"[85b6e8c](https://github.com/aracred/TheSource/commit/85b6e8cca2d6bc5709449605c8ac645fe74f78d5): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":970,"timestampMs":1585829522000},{"description":"[8619ee2](https://github.com/aracred/TheSource/commit/8619ee2452e7bf109169017acc968bba3e6e129d): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":971,"timestampMs":1584706303000},{"description":"[877be03](https://github.com/aracred/TheSource/commit/877be03e547648fb7a06110788e7dad226a05559): Add myself to list of identities","index":972,"timestampMs":1583542889000},{"description":"[89a15b5](https://github.com/aracred/TheSource/commit/89a15b5772d1dc21737181d7dda26695a0dfecca): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":973,"timestampMs":1585375849000},{"description":"[89b337b](https://github.com/aracred/TheSource/commit/89b337bef296df10a94c3b38ce1e2ef4396886d5): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":974,"timestampMs":1583431778000},{"description":"[8077363](https://github.com/aracred/TheSource/commit/80773639d8e225d1902d6145312108ecaa906a15): Merge bdb4c8a38c86a4598b2da69391fc84939148d738 into 8e04719f8d88512b8e8e19e17e42f7d960f6733b","index":975,"timestampMs":1581903076000},{"description":"[810abfb](https://github.com/aracred/TheSource/commit/810abfb03976accd663d1b7b964bbc19a92ec609): Merge pull request #17 from MetaFam/bean/patch-triggers","index":976,"timestampMs":1583014162000},{"description":"[817cf89](https://github.com/aracred/TheSource/commit/817cf8940cb88ba790c6021ce54bcb018aa0ceb6): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":977,"timestampMs":1583540024000},{"description":"[81a67f4](https://github.com/aracred/TheSource/commit/81a67f48120449294d3ab94cc767755e0bf3784e): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":978,"timestampMs":1586023930000},{"description":"[8275d1b](https://github.com/aracred/TheSource/commit/8275d1b5f3a774264d5833c23d8958342940092f): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":979,"timestampMs":1585570245000},{"description":"[8d960f0](https://github.com/aracred/TheSource/commit/8d960f0415e8ce8a45d7005c4ee399de672144d4): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":980,"timestampMs":1583410286000},{"description":"[8da32bb](https://github.com/aracred/TheSource/commit/8da32bb2436219e3a55631e426a71d3d45d27c36): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":981,"timestampMs":1585073567000},{"description":"[8e04719](https://github.com/aracred/TheSource/commit/8e04719f8d88512b8e8e19e17e42f7d960f6733b): Adds discord-token secret to action (#1)","index":982,"timestampMs":1581902687000},{"description":"[8e50a18](https://github.com/aracred/TheSource/commit/8e50a18b163cc513402b9c6c320672c83c46db84): added Alex Masmej","index":983,"timestampMs":1582941505000},{"description":"[94e51d9](https://github.com/aracred/TheSource/commit/94e51d9a83cd67b4ad82c6529212e72aac84afe7): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":984,"timestampMs":1583014460000},{"description":"[95d5884](https://github.com/aracred/TheSource/commit/95d5884b12a5a5f1d18552277e37597fb6048297): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":985,"timestampMs":1585289369000},{"description":"[9620fb8](https://github.com/aracred/TheSource/commit/9620fb8b0386160e364e38d63ad3fede4a182ce3): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":986,"timestampMs":1584814190000},{"description":"[978f052](https://github.com/aracred/TheSource/commit/978f052b63aa209ed8107dad71c59a44643e74ba): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":987,"timestampMs":1586002264000},{"description":"[98f76c4](https://github.com/aracred/TheSource/commit/98f76c4fa934a3e08dc4abb8c19697c7ed1da81c): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":988,"timestampMs":1584015081000},{"description":"[936cd22](https://github.com/aracred/TheSource/commit/936cd22fe159bfd7f8bed539783f52c768f20a9f): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":989,"timestampMs":1584901288000},{"description":"[9a5b489](https://github.com/aracred/TheSource/commit/9a5b489e1bbcc306ce4c6362aa5aadff60e6a27f): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":990,"timestampMs":1585851193000},{"description":"[9a86642](https://github.com/aracred/TheSource/commit/9a866424f84b469783dfe559a510ffc93e00d64b): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":991,"timestampMs":1585051794000},{"description":"[9aa0ecd](https://github.com/aracred/TheSource/commit/9aa0ecd6f537c0f3d5f6f200c7c5448ddc28c9dd): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":992,"timestampMs":1583864016000},{"description":"[9d0cacf](https://github.com/aracred/TheSource/commit/9d0cacf29ee5f6668426c0dd9cca12ad7af906aa): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":993,"timestampMs":1583561475000},{"description":"[9d8560f](https://github.com/aracred/TheSource/commit/9d8560f7a170cc2c0937ba7980dbcb466ad3140f): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":994,"timestampMs":1584922566000},{"description":"[9ee6d1b](https://github.com/aracred/TheSource/commit/9ee6d1b3b0d7b06c3abeb7b496e830683c54f6d4): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":995,"timestampMs":1584836115000},{"description":"[a433d84](https://github.com/aracred/TheSource/commit/a433d846e9ff70c98dba741fbfff7fa1985a67fb): Update generate-cred.yml","index":996,"timestampMs":1586103659000},{"description":"[a501a74](https://github.com/aracred/TheSource/commit/a501a7454bf19ee03003196bfec9560d48c978d2): Start running update action","index":997,"timestampMs":1581900781000},{"description":"[a6853a8](https://github.com/aracred/TheSource/commit/a6853a839b1101b077e3b80c3106da01be2807ea): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":998,"timestampMs":1584749757000},{"description":"[a7c425d](https://github.com/aracred/TheSource/commit/a7c425d5f9edb1106b5934cafe4cbfc221a08e9c): Merge pull request #20 from MetaFam/fix/trailing-comma","index":999,"timestampMs":1583124366000},{"description":"[a802f7c](https://github.com/aracred/TheSource/commit/a802f7c669324c951f6554fcf391f886ba3150f8): Update config with new Discourse server","index":1000,"timestampMs":1582959276000},{"description":"[a999d6b](https://github.com/aracred/TheSource/commit/a999d6bd35df198bab6252404325d7a944983410): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1001,"timestampMs":1583691175000},{"description":"[a0fb9b8](https://github.com/aracred/TheSource/commit/a0fb9b822baab9e0fce8433be3de7d423e1b4dd6): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1002,"timestampMs":1583064673000},{"description":"[a2547eb](https://github.com/aracred/TheSource/commit/a2547eb7d1835e050a897172b563ccb69b769711): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":1003,"timestampMs":1584684556000},{"description":"[a2fd7e0](https://github.com/aracred/TheSource/commit/a2fd7e076795c62a07501d5fb71c03999cc4b145): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":1004,"timestampMs":1583842226000},{"description":"[a37a482](https://github.com/aracred/TheSource/commit/a37a48256d99a63fcf0a678ebbb34cca0fd95f23): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1005,"timestampMs":1585743137000},{"description":"[ae656a1](https://github.com/aracred/TheSource/commit/ae656a1a99e9a8cc227c187154123571d9d16872): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1006,"timestampMs":1583107978000},{"description":"[af89e8d](https://github.com/aracred/TheSource/commit/af89e8d6be326c34865a925f1be4c67877064e30): Delete scores.json","index":1007,"timestampMs":1586105574000},{"description":"[b439421](https://github.com/aracred/TheSource/commit/b4394213300ff4d72ebaca7c63cf919df306ead3): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1008,"timestampMs":1583096222000},{"description":"[b5ad5ee](https://github.com/aracred/TheSource/commit/b5ad5eea401b4f415b9da446187b893a7ceee1b5): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":1009,"timestampMs":1585030166000},{"description":"[b5df3c8](https://github.com/aracred/TheSource/commit/b5df3c8cd85cbe43606f2052f00631dbfcca42d9): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1010,"timestampMs":1585764755000},{"description":"[b6388db](https://github.com/aracred/TheSource/commit/b6388db5eb6a6fed56eba661db2b761ccddfd6fc): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1011,"timestampMs":1583993566000},{"description":"[b670574](https://github.com/aracred/TheSource/commit/b670574bd2bcf1e0a71c36b9447b0d5ffe22b9aa): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1012,"timestampMs":1583972111000},{"description":"[b6920f3](https://github.com/aracred/TheSource/commit/b6920f3b6646522b3fc0f93e6343506b485c158b): fix trailing comma in json","index":1013,"timestampMs":1583124346000},{"description":"[b6968e4](https://github.com/aracred/TheSource/commit/b6968e47899cfc22652e1f1dbb3b82ed98cc5232): Create README.md","index":1014,"timestampMs":1586106281000},{"description":"[b8319d3](https://github.com/aracred/TheSource/commit/b8319d3616c7d5e6c2af8087ea63e9fab1a73c02): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1015,"timestampMs":1583619966000},{"description":"[b842ed3](https://github.com/aracred/TheSource/commit/b842ed3eaf687513a0d90eafdfb0a9ec6fc5882e): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1016,"timestampMs":1583302409000},{"description":"[b85c0b5](https://github.com/aracred/TheSource/commit/b85c0b5ab98357c6dc3af69297e6a795851c89f4): Automated deployment to update cred in /github/workspace/docs 2020-02-17","index":1017,"timestampMs":1581903422000},{"description":"[b8c9da4](https://github.com/aracred/TheSource/commit/b8c9da4bcc0d1a50add9423473a6c162cdb99597): Add wiki to projects","index":1018,"timestampMs":1585361688000},{"description":"[b9309e4](https://github.com/aracred/TheSource/commit/b9309e4d44289af8341f43103b7be195df5998b0): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":1019,"timestampMs":1583778483000},{"description":"[b038f1c](https://github.com/aracred/TheSource/commit/b038f1ca9f9b6a5a54935c1a730d2e32f8220ce7): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1020,"timestampMs":1583583119000},{"description":"[b1e2418](https://github.com/aracred/TheSource/commit/b1e24185c567c4f9a60959559e6ff1ac7dbb6279): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1021,"timestampMs":1583043139000},{"description":"[b3a4034](https://github.com/aracred/TheSource/commit/b3a4034f04332a6546a7d03ee781f10dbf9e32f3): Merge pull request #2 from pythonpete32/patch-1","index":1022,"timestampMs":1586104090000},{"description":"[b3f667c](https://github.com/aracred/TheSource/commit/b3f667c746d54fd1e7ef41d4e91186ff705cb01a): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1023,"timestampMs":1583237458000},{"description":"[ba08f21](https://github.com/aracred/TheSource/commit/ba08f21f38fef25e65a006e4af00591f623cba88): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1024,"timestampMs":1583194441000},{"description":"[ba693f5](https://github.com/aracred/TheSource/commit/ba693f5f116cf19d9a8bf1bf55a4ec8c6c1929b8): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1025,"timestampMs":1583215867000},{"description":"[bbca4d0](https://github.com/aracred/TheSource/commit/bbca4d024098c749b7064b70c24c416061255c75): Switch to automatic updates","index":1026,"timestampMs":1581914667000},{"description":"[bbc54e4](https://github.com/aracred/TheSource/commit/bbc54e4947190da8c37d767e004339b62fb34aac): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":1027,"timestampMs":1585527211000},{"description":"[bdb4c8a](https://github.com/aracred/TheSource/commit/bdb4c8a38c86a4598b2da69391fc84939148d738): Automate cred updates","index":1028,"timestampMs":1581903056000},{"description":"[bdd1d95](https://github.com/aracred/TheSource/commit/bdd1d95095fc99186754502c96c1ecbff216fb14): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":1029,"timestampMs":1583734323000},{"description":"[bfd321a](https://github.com/aracred/TheSource/commit/bfd321a5c384dc7fab99062bcc3491705303a176): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1030,"timestampMs":1586105832000},{"description":"[c461bb4](https://github.com/aracred/TheSource/commit/c461bb40366be6124cc8e09af25741c5e65b1a6a): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1031,"timestampMs":1583950431000},{"description":"[c4ae2b9](https://github.com/aracred/TheSource/commit/c4ae2b95edd223a2b3269f4913c5a237e7557194): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1032,"timestampMs":1583345470000},{"description":"[c519a09](https://github.com/aracred/TheSource/commit/c519a0916f23866c99c0c76bad33dec09c4a1052): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1033,"timestampMs":1586045554000},{"description":"[c5eeac9](https://github.com/aracred/TheSource/commit/c5eeac948569a06622740d0b9340c622ddb469d3): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":1034,"timestampMs":1584771018000},{"description":"[c61bc79](https://github.com/aracred/TheSource/commit/c61bc79183374e7e37a8456ff47f662a2bc21baf): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":1035,"timestampMs":1585959190000},{"description":"[c7acef8](https://github.com/aracred/TheSource/commit/c7acef8a5664d3dd57059e8cc447c4f1dbe269db): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":1036,"timestampMs":1584144938000},{"description":"[c85e7ad](https://github.com/aracred/TheSource/commit/c85e7ad86fb08653971ed365f4f316d4577178ed): Update identity for Hammad","index":1037,"timestampMs":1582941407000},{"description":"[c00a25e](https://github.com/aracred/TheSource/commit/c00a25ed5500c60da5520e12c68db9dc1e003cd1): Merge c85e7ad86fb08653971ed365f4f316d4577178ed into 225168780b86a4b41d38845653c5d8759d1d37ad","index":1038,"timestampMs":1582941413000},{"description":"[c37818d](https://github.com/aracred/TheSource/commit/c37818dc54db302c1bb2bfe99312084cb6452263): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1039,"timestampMs":1583125241000},{"description":"[cc4e4ff](https://github.com/aracred/TheSource/commit/cc4e4ff94b2fe78d8727963b42bc1c33bfd2e932): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":1040,"timestampMs":1585786422000},{"description":"[cf359f5](https://github.com/aracred/TheSource/commit/cf359f56a9e7d9e380a729fe64f0fd9e06853c21): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1041,"timestampMs":1583647930000},{"description":"[cf41636](https://github.com/aracred/TheSource/commit/cf41636379acd5fb9e27af62727fdf64a111d959): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":1042,"timestampMs":1583388676000},{"description":"[d455555](https://github.com/aracred/TheSource/commit/d4555554d347b2385ac96a530f5628491c2c724c): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":1043,"timestampMs":1585202969000},{"description":"[d593b12](https://github.com/aracred/TheSource/commit/d593b126af5ccde32fe610fbc399f9233c4fcdcf): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1044,"timestampMs":1583021626000},{"description":"[d7e5763](https://github.com/aracred/TheSource/commit/d7e5763c37582067d930e53718273eef67997db7): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1045,"timestampMs":1583885686000},{"description":"[d8034c1](https://github.com/aracred/TheSource/commit/d8034c1a997a6f3762eb64abefd3983ca5c17b27): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":1046,"timestampMs":1584317721000},{"description":"[d9b40e0](https://github.com/aracred/TheSource/commit/d9b40e071c2f216b8fb4cebce788ec1bf892ac7c): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":1047,"timestampMs":1584792698000},{"description":"[d0cc40b](https://github.com/aracred/TheSource/commit/d0cc40b28ca9129e733107d99730dfbcd9449273): Update generate-cred.yml","index":1048,"timestampMs":1586103656000},{"description":"[d210d6f](https://github.com/aracred/TheSource/commit/d210d6f387860b4736193624125ec5e1b8f5c88a): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":1049,"timestampMs":1584447107000},{"description":"[def7f01](https://github.com/aracred/TheSource/commit/def7f01015008f1aefda848d93661555c086231a): Add preview data","index":1050,"timestampMs":1581898638000},{"description":"[df39053](https://github.com/aracred/TheSource/commit/df39053f37bf93823cd4364b819ca1289e4481b1): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":1051,"timestampMs":1585181592000},{"description":"[df9f742](https://github.com/aracred/TheSource/commit/df9f7423f0e18a57835324b459fe243d3f3e55ab): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1052,"timestampMs":1586088576000},{"description":"[e5c721b](https://github.com/aracred/TheSource/commit/e5c721ba787d25a591d470c5ba11d9bd41e1797f): Merge pull request #19 from mzargham/master","index":1053,"timestampMs":1583124164000},{"description":"[e63ec70](https://github.com/aracred/TheSource/commit/e63ec70c3b75de539e86faf77c9e44f83753cb1f): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":1054,"timestampMs":1585635193000},{"description":"[e00d2fb](https://github.com/aracred/TheSource/commit/e00d2fbc8959a1a8dd6907627c0f13731dd5b7e4): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1055,"timestampMs":1583545284000},{"description":"[e0cd354](https://github.com/aracred/TheSource/commit/e0cd35442d7cf4999adc586ee0c24e3fc3bf2e1f): Fix extra comma","index":1056,"timestampMs":1582941750000},{"description":"[ea5b35e](https://github.com/aracred/TheSource/commit/ea5b35e7658fc8550736aa7ef2e3e4a37c8395a2): Update project.json","index":1057,"timestampMs":1583592448000},{"description":"[ebfca23](https://github.com/aracred/TheSource/commit/ebfca230987726fb6d0c74cdba1e7346b5d08345): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1058,"timestampMs":1583626507000},{"description":"[ec5436b](https://github.com/aracred/TheSource/commit/ec5436b68ec36cea41f923ae2d95841b7dbe678a): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1059,"timestampMs":1585721531000},{"description":"[eca1c8e](https://github.com/aracred/TheSource/commit/eca1c8e4fb9897f86e7192f1741d00509707a42d): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1060,"timestampMs":1583151030000},{"description":"[ee30ad2](https://github.com/aracred/TheSource/commit/ee30ad273845bf58d551566ffe5c4e87e98c07c2): Trigger update","index":1061,"timestampMs":1585365677000},{"description":"[ef1a4e1](https://github.com/aracred/TheSource/commit/ef1a4e1d3bf70f9daccebdf3028ea8f476c26899): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":1062,"timestampMs":1583518372000},{"description":"[f6a88b6](https://github.com/aracred/TheSource/commit/f6a88b69728fa2cbc9304a9d3a6193afa9aca17c): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":1063,"timestampMs":1585419164000},{"description":"[f78660c](https://github.com/aracred/TheSource/commit/f78660ce09132d6127ab960a0fdb9f19f2b76893): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1064,"timestampMs":1584036899000},{"description":"[f79294b](https://github.com/aracred/TheSource/commit/f79294b14e900ca927b3e9e5cf51972814cd2c50): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1065,"timestampMs":1583323781000},{"description":"[f7ecdc6](https://github.com/aracred/TheSource/commit/f7ecdc6617ce77574676654a84f58313ad9f84a8): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1066,"timestampMs":1583907011000},{"description":"[f819ec5](https://github.com/aracred/TheSource/commit/f819ec520e754c4adb46d13d0126fa48f03b0dac): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":1067,"timestampMs":1585361881000},{"description":"[f96bc3f](https://github.com/aracred/TheSource/commit/f96bc3f66106ed4341d674b5a37a1fce8035c922): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":1068,"timestampMs":1583475056000},{"description":"[f1b1a34](https://github.com/aracred/TheSource/commit/f1b1a348514a8d88750c2774a379a00b85ea0810): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":1069,"timestampMs":1584295996000},{"description":"[f3d076f](https://github.com/aracred/TheSource/commit/f3d076f67797f6c3491e046a5dcdce0372890de5): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":1070,"timestampMs":1585138236000},{"description":"[fe33dab](https://github.com/aracred/TheSource/commit/fe33dab74a05f43d1e24044dc4413ff0e72aad50): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":1071,"timestampMs":1584641608000},{"description":"[0470e9f](https://github.com/aracred/AraCred/commit/0470e9f5c13a7c36b0934ca935365649872ad849): Add jest, documentation","index":1072,"timestampMs":1586425053000},{"description":"[06e6bf0](https://github.com/aracred/AraCred/commit/06e6bf089f69a108cae63a413e3a3d0a6c0d40fa): Create run_cli.yml","index":1073,"timestampMs":1586114858000},{"description":"[0764e2b](https://github.com/aracred/AraCred/commit/0764e2b7701a6cd6076622bce90c3d3030e7d08a): Merge branch 'mainnet-test'","index":1074,"timestampMs":1586658939000},{"description":"[08aa4aa](https://github.com/aracred/AraCred/commit/08aa4aa95a936798295f7d02cfa54c1441ae7aa3): add .gitignore","index":1075,"timestampMs":1586425366000},{"description":"[0097f20](https://github.com/aracred/AraCred/commit/0097f202e6f5d2c003e2ce168d124909f19458d7): Update Address book","index":1076,"timestampMs":1586377189000},{"description":"[00ab698](https://github.com/aracred/AraCred/commit/00ab6982140ebd949db7457512b233b7aa3afa1f): Fix settings","index":1077,"timestampMs":1586109857000},{"description":"[02f4d36](https://github.com/aracred/AraCred/commit/02f4d3623ae4e89fa6232477d97fe32b27aae7c5): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1078,"timestampMs":1586283283000},{"description":"[0326166](https://github.com/aracred/AraCred/commit/0326166091410578eaf7c25d9f6736cd4533f9cd): test setupAragon","index":1079,"timestampMs":1586439223000},{"description":"[03604a7](https://github.com/aracred/AraCred/commit/03604a7d8f9a6f488f7990309e70066a1260483d): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1080,"timestampMs":1586434473000},{"description":"[0388fb0](https://github.com/aracred/AraCred/commit/0388fb0219a7460e6726b34835c670986be5406c): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1081,"timestampMs":1586757849000},{"description":"[03e1112](https://github.com/aracred/AraCred/commit/03e1112bf4099083d81386043099e4876599d53d): setup husky","index":1082,"timestampMs":1586430244000},{"description":"[0a23c18](https://github.com/aracred/AraCred/commit/0a23c189b1d776985b6759cfb65b75a5b0dbe388): setup husky","index":1083,"timestampMs":1586430128000},{"description":"[0b35141](https://github.com/aracred/AraCred/commit/0b351412cfa92c8edabea1449da16a7a2128c81f): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1084,"timestampMs":1586822727000},{"description":"[0cc15c5](https://github.com/aracred/AraCred/commit/0cc15c54f0ac08b76b0b20231523123c68e787cc): fix","index":1085,"timestampMs":1586638157000},{"description":"[0e9dbd8](https://github.com/aracred/AraCred/commit/0e9dbd8406b256f6b5e553d6769683a55909ab84): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1086,"timestampMs":1586462221000},{"description":"[16309da](https://github.com/aracred/AraCred/commit/16309da6c786efe9dc1f745c61ad4f2c2ad61d76): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1087,"timestampMs":1586369661000},{"description":"[1798e29](https://github.com/aracred/AraCred/commit/1798e29eb0b6d8dd5e4f14ffcc2f25644e736762): Update README.md","index":1088,"timestampMs":1586535321000},{"description":"[17ec0dc](https://github.com/aracred/AraCred/commit/17ec0dcf84726a4da739f0cbe36cd1908477e4cb): refactor setupAragon","index":1089,"timestampMs":1586436690000},{"description":"[1834ed5](https://github.com/aracred/AraCred/commit/1834ed59b6a58195aef57af492f3122a94aac239): update readme","index":1090,"timestampMs":1586760993000},{"description":"[191e73e](https://github.com/aracred/AraCred/commit/191e73e429ab193e59189f44b363d69613ee0315): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1091,"timestampMs":1586607165000},{"description":"[11a45eb](https://github.com/aracred/AraCred/commit/11a45eb188a756e31f2ece0afcf10afb5e30112f): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1092,"timestampMs":1586887494000},{"description":"[12f5e68](https://github.com/aracred/AraCred/commit/12f5e68f287c17d2e7fbe424b996b269c74c0e8f): Reorg folder structre","index":1093,"timestampMs":1586425839000},{"description":"[1ea710e](https://github.com/aracred/AraCred/commit/1ea710efed95a3abd2613ee16b3aaea6110def50): session 3 photos","index":1094,"timestampMs":1586994934000},{"description":"[1eea54a](https://github.com/aracred/AraCred/commit/1eea54a1361eb6aedba221f65f86205866b97322): Create updateDiscord.yml","index":1095,"timestampMs":1586475320000},{"description":"[275d163](https://github.com/aracred/AraCred/commit/275d163efdd812cdcd6ae2f5a8aff1bab3bed0e7): Merge branch 'master' of https://github.com/aracred/AraCred","index":1096,"timestampMs":1586211419000},{"description":"[29d9a8e](https://github.com/aracred/AraCred/commit/29d9a8ef0d738d8b1bdae873c892af41858cda0a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1097,"timestampMs":1586635242000},{"description":"[20796df](https://github.com/aracred/AraCred/commit/20796df7555b0c191dd575542000d50d98c034cc): log deleted?","index":1098,"timestampMs":1586636313000},{"description":"[21df431](https://github.com/aracred/AraCred/commit/21df4319db26f8c3ed6eed74b2076026cad5c070): Update project.json","index":1099,"timestampMs":1586972808000},{"description":"[221754a](https://github.com/aracred/AraCred/commit/221754a5dbe3ebdf6a0fc5080de82669f5476b83): refactor setupAragon","index":1100,"timestampMs":1586436960000},{"description":"[234d3b0](https://github.com/aracred/AraCred/commit/234d3b02b5491114f1257e23fcaf2bf880eee376): :((","index":1101,"timestampMs":1586645851000},{"description":"[2aaae9c](https://github.com/aracred/AraCred/commit/2aaae9c777eb4801ef65192afd1c7553ceb74012): Update run_cli.yml","index":1102,"timestampMs":1586114997000},{"description":"[2b67c25](https://github.com/aracred/AraCred/commit/2b67c252af08687a1c02e924757e383977d4d4d7): refactor setupAragon","index":1103,"timestampMs":1586436983000},{"description":"[2bd813f](https://github.com/aracred/AraCred/commit/2bd813f09f98fa3b26934f6ff7faaab6ea73f1e6): Install aracred + aragon action","index":1104,"timestampMs":1586439726000},{"description":"[2d290b2](https://github.com/aracred/AraCred/commit/2d290b2288a14d494f0fc18bfac882ef6c617e6a): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1105,"timestampMs":1586844255000},{"description":"[36ed95d](https://github.com/aracred/AraCred/commit/36ed95ddf8349ba3d557bfbbef066b2559b432a3): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1106,"timestampMs":1586718195000},{"description":"[39dae46](https://github.com/aracred/AraCred/commit/39dae46151fcde41ea0b062ae95fde4109142e5b): Update addressbook.json","index":1107,"timestampMs":1587058277000},{"description":"[30ab2ab](https://github.com/aracred/AraCred/commit/30ab2ab8774f20e9541f08c657e6ec9ab08504f0): Update project.json","index":1108,"timestampMs":1587049226000},{"description":"[30ebf64](https://github.com/aracred/AraCred/commit/30ebf64342f800953d06f2b0ed888ac8d4495f69): remove .json linting","index":1109,"timestampMs":1586430447000},{"description":"[314f037](https://github.com/aracred/AraCred/commit/314f037efaaf34002934fac72ee5b8c34e633117): test setupAragon","index":1110,"timestampMs":1586438375000},{"description":"[325b973](https://github.com/aracred/AraCred/commit/325b973a78cbe14ff3f5e9766faee18e85d5a408): Update project.json","index":1111,"timestampMs":1586710226000},{"description":"[32d6fc7](https://github.com/aracred/AraCred/commit/32d6fc725adb844ed330499482232f2876de58d1): Fix settings","index":1112,"timestampMs":1586110667000},{"description":"[336edf6](https://github.com/aracred/AraCred/commit/336edf6f3e0b661f947432cf39bbd9d26299f29d): Update project.json","index":1113,"timestampMs":1586718047000},{"description":"[3a5b333](https://github.com/aracred/AraCred/commit/3a5b33363a28c7bf7bc62329095b08110996d659): test setupAragon","index":1114,"timestampMs":1586439440000},{"description":"[3a649e8](https://github.com/aracred/AraCred/commit/3a649e81c448757920b8c8bdcf8fc392f84d3580): We Have Liftoff","index":1115,"timestampMs":1586658493000},{"description":"[3c52923](https://github.com/aracred/AraCred/commit/3c52923940969e0594c9693d27e80bf81e49bdfb): Automated deployment to update cred in /github/workspace/docs 2020-04-06","index":1116,"timestampMs":1586211419000},{"description":"[3c716ca](https://github.com/aracred/AraCred/commit/3c716ca39a305e5d8a9b2a5aa466039466d05a38): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1117,"timestampMs":1586952325000},{"description":"[3d84fcf](https://github.com/aracred/AraCred/commit/3d84fcf16de8bdd78f1098650394a66a29709a40): Update run_cli.yml","index":1118,"timestampMs":1586641745000},{"description":"[3e37600](https://github.com/aracred/AraCred/commit/3e3760007c9d0a9471f5f0d429ac4c30b1fb54f6): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1119,"timestampMs":1586704923000},{"description":"[4474d1b](https://github.com/aracred/AraCred/commit/4474d1b88abf39aa94df664898e4832fc05e52cc): Update README.md","index":1120,"timestampMs":1586796945000},{"description":"[4477235](https://github.com/aracred/AraCred/commit/44772353f8d950226d909b12778cbed4df3ed866): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1121,"timestampMs":1586348063000},{"description":"[44ea41a](https://github.com/aracred/AraCred/commit/44ea41a64de0f121ff05a4c07c6bb51e35eb5035): add readme","index":1122,"timestampMs":1586446367000},{"description":"[45d3445](https://github.com/aracred/AraCred/commit/45d3445cd814d4666f19f4b1b480984f1c0381eb): Update addressbook.json","index":1123,"timestampMs":1586978574000},{"description":"[45f25ea](https://github.com/aracred/AraCred/commit/45f25ea4eb646427c06e58b7e4ce2c4cd385c329): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1124,"timestampMs":1586535464000},{"description":"[47d595c](https://github.com/aracred/AraCred/commit/47d595cee7fd82afdb8666263baa96555bec7b30): move to new repo","index":1125,"timestampMs":1586107822000},{"description":"[40036a3](https://github.com/aracred/AraCred/commit/40036a386b07c41b89e594736dadb6134cf182de): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1126,"timestampMs":1586498582000},{"description":"[4a623fb](https://github.com/aracred/AraCred/commit/4a623fbc3735c9a32d10199880214cc79caa4004): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1127,"timestampMs":1586712241000},{"description":"[4acea81](https://github.com/aracred/AraCred/commit/4acea81dd65135e7afd23cd4c5484dae44bcb324): Fix settings","index":1128,"timestampMs":1586111848000},{"description":"[4dc6dc2](https://github.com/aracred/AraCred/commit/4dc6dc24deb0f914eabc017a1e488a4d62f1a893): Merge pull request #11 from aracred/sc-patch","index":1129,"timestampMs":1586450203000},{"description":"[4ec6bdc](https://github.com/aracred/AraCred/commit/4ec6bdc6a120e123052ebf690ddf6f32b9c35722): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1130,"timestampMs":1586649806000},{"description":"[5409041](https://github.com/aracred/AraCred/commit/54090419b371cac747ca19327d54c4cddb375f05): Update devops.yml","index":1131,"timestampMs":1586208161000},{"description":"[554a82b](https://github.com/aracred/AraCred/commit/554a82bc05cb713e92e8b3523b521078daf829f0): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1132,"timestampMs":1586779463000},{"description":"[56e1450](https://github.com/aracred/AraCred/commit/56e1450abd29457d3aefbdaef3e38562727b7628): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1133,"timestampMs":1586477016000},{"description":"[5023eee](https://github.com/aracred/AraCred/commit/5023eee71c9c3f2f16de1b22e9f37fda26c2f023): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1134,"timestampMs":1586995532000},{"description":"[52c6264](https://github.com/aracred/AraCred/commit/52c6264dbafc69c14a2381a41075ca4fbb020653): remove recursive call to grain","index":1135,"timestampMs":1586608102000},{"description":"[53b6f1b](https://github.com/aracred/AraCred/commit/53b6f1b980b797f92d59fc4912b2fe6e999f774a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1136,"timestampMs":1586628192000},{"description":"[53d9b62](https://github.com/aracred/AraCred/commit/53d9b62862d0e8ef597dbffcbd0da8bcd12100cc): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1137,"timestampMs":1586736284000},{"description":"[5ae6db7](https://github.com/aracred/AraCred/commit/5ae6db74ec638222cb60957c3105e15de7f84457): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1138,"timestampMs":1586712506000},{"description":"[5d168f1](https://github.com/aracred/AraCred/commit/5d168f1298b62e831159fc316e394491b8386aa8): test setupAragon","index":1139,"timestampMs":1586438648000},{"description":"[5dd05e3](https://github.com/aracred/AraCred/commit/5dd05e3605e9940f65f2059e8c4286077a6439db): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1140,"timestampMs":1586556340000},{"description":"[5f68901](https://github.com/aracred/AraCred/commit/5f689010f6e0a438513b7e44ef37ae12d59ddf91): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1141,"timestampMs":1586412877000},{"description":"[5fc99f0](https://github.com/aracred/AraCred/commit/5fc99f0926a38140bc41ab5322e28e43f5b50969): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1142,"timestampMs":1586520161000},{"description":"[66f2702](https://github.com/aracred/AraCred/commit/66f27020fa0bd12851a0de1b206abec8c0b5e55d): merge","index":1143,"timestampMs":1586447296000},{"description":"[67b5858](https://github.com/aracred/AraCred/commit/67b58587f295e53b396fed2b68ab34032fd86420): Split yml files","index":1144,"timestampMs":1586262990000},{"description":"[68038d1](https://github.com/aracred/AraCred/commit/68038d157338b257f25c21b69def40c3eed1e43e): added SourceCred actions","index":1145,"timestampMs":1586108344000},{"description":"[603c5f7](https://github.com/aracred/AraCred/commit/603c5f7b7e2afb54619ebe705b969a1acb102bf6): Update project.json","index":1146,"timestampMs":1586822144000},{"description":"[6044da7](https://github.com/aracred/AraCred/commit/6044da77d77cd5f0bf782fd47faf7813cb9a00d7): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1147,"timestampMs":1586426011000},{"description":"[604ba87](https://github.com/aracred/AraCred/commit/604ba8761cdddc84bfa66485fe367495e5c8a65a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1148,"timestampMs":1586619438000},{"description":"[60df4a2](https://github.com/aracred/AraCred/commit/60df4a2278ec3dd51317900064eb3061be31c3b7): Update project.json","index":1149,"timestampMs":1586712379000},{"description":"[62d4724](https://github.com/aracred/AraCred/commit/62d47242332f4e1d86f7d7ae460f6dc998344aa2): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1150,"timestampMs":1586631415000},{"description":"[6bc1161](https://github.com/aracred/AraCred/commit/6bc1161d99c436a23c35f5477862677701ef72e7): Merge branch 'master' of https://github.com/aracred/AraCred","index":1151,"timestampMs":1586629712000},{"description":"[6f1a396](https://github.com/aracred/AraCred/commit/6f1a3968daa1e3d2bd607f81a599ac5ebf73f717): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1152,"timestampMs":1586263834000},{"description":"[6f4ff7a](https://github.com/aracred/AraCred/commit/6f4ff7a024df84c214317b9c950d77f3ae3c4f57): Merge pull request #20 from aracred/add-evalir-aracred","index":1153,"timestampMs":1586810697000},{"description":"[6fb58d2](https://github.com/aracred/AraCred/commit/6fb58d2bcb10efa1a1836b0bf3357ae6bc33955b): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1154,"timestampMs":1586541781000},{"description":"[753c27e](https://github.com/aracred/AraCred/commit/753c27ee7d264f00c566fe6f56722528f1028704): switch to rinkeby","index":1155,"timestampMs":1586630579000},{"description":"[7544c9c](https://github.com/aracred/AraCred/commit/7544c9c062ca14c025caa6d2d859e346287f5e06): logging","index":1156,"timestampMs":1586640176000},{"description":"[758f9eb](https://github.com/aracred/AraCred/commit/758f9ebb14e2687de4f888bc94f872a610174a9f): Add Evalir to Aracred","index":1157,"timestampMs":1586802604000},{"description":"[75ebd02](https://github.com/aracred/AraCred/commit/75ebd0228f654f094c750b9885c5fe5aceb72486): Update project.json","index":1158,"timestampMs":1586972788000},{"description":"[777514f](https://github.com/aracred/AraCred/commit/777514f100a7dc7df22a9a3f2c57f6516e8efc44): fix run_sc .yml fies","index":1159,"timestampMs":1586264143000},{"description":"[78714ca](https://github.com/aracred/AraCred/commit/78714ca856356791aae2576d01eb1c27fc7e4c3f): fix CLI action, disable SC run on push","index":1160,"timestampMs":1586443674000},{"description":"[713acbd](https://github.com/aracred/AraCred/commit/713acbd4593a7a10b0544aaab7fc4ac05a66f9ae): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1161,"timestampMs":1586671402000},{"description":"[73505c3](https://github.com/aracred/AraCred/commit/73505c34a1b46a3dfcaca4d9c3aa116fdf51e0db): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1162,"timestampMs":1586265411000},{"description":"[73dbfea](https://github.com/aracred/AraCred/commit/73dbfea00d269ff953ee50c034f1c6939743a5de): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1163,"timestampMs":1586909106000},{"description":"[7a99196](https://github.com/aracred/AraCred/commit/7a991963a5c8fc8dba4ab6a0c1e39421eeec45d6): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1164,"timestampMs":1586456075000},{"description":"[7ad5a2a](https://github.com/aracred/AraCred/commit/7ad5a2af6206fa2c6d894364d1f7f40b55f08149): switch to rinkeby","index":1165,"timestampMs":1586629689000},{"description":"[7b20ff3](https://github.com/aracred/AraCred/commit/7b20ff37a9650a134c6f55fffd04fbdd5df83b43): Update run_cli.yml","index":1166,"timestampMs":1586642724000},{"description":"[7bdeb69](https://github.com/aracred/AraCred/commit/7bdeb692b04c1a855be5d7dda172d87caafa3f1b): Merge pull request #27 from mzargham/worksession-3-photos","index":1167,"timestampMs":1587042850000},{"description":"[7d4bf5a](https://github.com/aracred/AraCred/commit/7d4bf5aecee8daf8516f468e96e15c6b4d0efbcf): Update run_sc.yml","index":1168,"timestampMs":1586461703000},{"description":"[7e0a5d6](https://github.com/aracred/AraCred/commit/7e0a5d65716af527389ac6bb38d14950d482e415): update .yml fies","index":1169,"timestampMs":1586264058000},{"description":"[7ea5916](https://github.com/aracred/AraCred/commit/7ea5916ad6f9de9841f277901506ab72a39bf157): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1170,"timestampMs":1586973850000},{"description":"[7fadabe](https://github.com/aracred/AraCred/commit/7fadabe4bad18a2e7326b241c874d5efbeb6a691): Update project.json","index":1171,"timestampMs":1586208446000},{"description":"[8849eeb](https://github.com/aracred/AraCred/commit/8849eeb9b3a0677fcc53c34ec1675a0e27cf0074): Merge pull request #1 from aracred/split-config","index":1172,"timestampMs":1586264565000},{"description":"[89ed10e](https://github.com/aracred/AraCred/commit/89ed10ec9153e166a0b7275c73003fc6fd86e76e): fix run_sc.yml fies","index":1173,"timestampMs":1586264365000},{"description":"[8a584e4](https://github.com/aracred/AraCred/commit/8a584e4b4f9c8a1111bf383d3a7a72ca3f8ee5b9): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1174,"timestampMs":1586634125000},{"description":"[8b44ea0](https://github.com/aracred/AraCred/commit/8b44ea06f42e6a25fc0e87bfd38c28786001969a): MAINNET","index":1175,"timestampMs":1586633972000},{"description":"[8c62624](https://github.com/aracred/AraCred/commit/8c62624a48c8a907f8b30e548abdc4e3764fb0df): switch to rinkeby","index":1176,"timestampMs":1586630527000},{"description":"[8c79753](https://github.com/aracred/AraCred/commit/8c797532d4140aa6ce0d5514cc6ca749ec6223e3): fix processGrain","index":1177,"timestampMs":1586632841000},{"description":"[8ce123a](https://github.com/aracred/AraCred/commit/8ce123a903f0035d55349e86f54eb04838bb739f): Merge branch 'tidyRepo'","index":1178,"timestampMs":1586446829000},{"description":"[8dfd165](https://github.com/aracred/AraCred/commit/8dfd165458a81f0c67969620d6ab006b7e24aef0): add github workflows","index":1179,"timestampMs":1586437704000},{"description":"[8e13f39](https://github.com/aracred/AraCred/commit/8e13f39d1372b422a914857f324ee60abd2c795a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1180,"timestampMs":1586630734000},{"description":"[8e56a3f](https://github.com/aracred/AraCred/commit/8e56a3f94f680b5419df0fbfba1e9c985a495345): :)","index":1181,"timestampMs":1586643749000},{"description":"[8e62a06](https://github.com/aracred/AraCred/commit/8e62a063ca7e54dc299eb6cabbf877a663b94c8f): Update project.json","index":1182,"timestampMs":1587058263000},{"description":"[8e80b8f](https://github.com/aracred/AraCred/commit/8e80b8ff5bbc8123e57ac728fc9efcd1cd2d038b): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1183,"timestampMs":1586613015000},{"description":"[8fe6cb1](https://github.com/aracred/AraCred/commit/8fe6cb1f84b56fff85a3bd87661712256a6806ab): Update dao.json","index":1184,"timestampMs":1586556200000},{"description":"[96d3703](https://github.com/aracred/AraCred/commit/96d370369c4d00c35acbdbc499fed536101b6601): package.lock","index":1185,"timestampMs":1586426157000},{"description":"[971440a](https://github.com/aracred/AraCred/commit/971440a0ff594fb02bef0ed3320e9371e17bc2c3): Delete updateDiscord.yml","index":1186,"timestampMs":1586504576000},{"description":"[982a89d](https://github.com/aracred/AraCred/commit/982a89df2b5282578a7593eea49511ae803ee10b): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1187,"timestampMs":1586637613000},{"description":"[90694dc](https://github.com/aracred/AraCred/commit/90694dc47c350631227c33418a773a70137d5877): Update addressbook.json","index":1188,"timestampMs":1587050798000},{"description":"[912ad7c](https://github.com/aracred/AraCred/commit/912ad7ced1c783afb97c7d9a66f7c3f5e2799312): Update project.json","index":1189,"timestampMs":1587051668000},{"description":"[9227670](https://github.com/aracred/AraCred/commit/9227670ae651f3da852b6ec3555aa15713ecce86): Merge branch 'master' of https://github.com/aracred/AraCred","index":1190,"timestampMs":1586632115000},{"description":"[937417e](https://github.com/aracred/AraCred/commit/937417e50fd087e175a28471de2176cb56ec7003): Update run_cli.yml","index":1191,"timestampMs":1586115022000},{"description":"[9fdf441](https://github.com/aracred/AraCred/commit/9fdf4415ba620e87f0c8182df47265aa34f5f8fd): test patch","index":1192,"timestampMs":1586395769000},{"description":"[a462920](https://github.com/aracred/AraCred/commit/a462920043f7ded252ca746cf21c6a3dfe91325b): Update addressbook.json","index":1193,"timestampMs":1586978547000},{"description":"[a52d247](https://github.com/aracred/AraCred/commit/a52d2478c6e23704685c324883891a25f261069f): Update project.json","index":1194,"timestampMs":1587051026000},{"description":"[a6e243f](https://github.com/aracred/AraCred/commit/a6e243fcbfe540b52551bbb50c542ad07ee92e39): setup prettier","index":1195,"timestampMs":1586428289000},{"description":"[a7ea71e](https://github.com/aracred/AraCred/commit/a7ea71e19d10841f56da13b7bd52ec3b0b2a9469): Fix?","index":1196,"timestampMs":1586635956000},{"description":"[a8419d9](https://github.com/aracred/AraCred/commit/a8419d96792a217c1bb9462dfa71c8c738a87a16): Update project.json","index":1197,"timestampMs":1586717770000},{"description":"[a04b179](https://github.com/aracred/AraCred/commit/a04b1795da49cbc6e5f795f3b6c6cc424e1b9d19): Update addressbook.json","index":1198,"timestampMs":1586975177000},{"description":"[a04cff6](https://github.com/aracred/AraCred/commit/a04cff65d72e1b96813ce58a0122a50378ac496d): Revert \"Update README.md\"","index":1199,"timestampMs":1586566089000},{"description":"[a04fe98](https://github.com/aracred/AraCred/commit/a04fe98b80805bd1b2eafab803bc54c45c360418): add ./log","index":1200,"timestampMs":1586637453000},{"description":"[a0931cb](https://github.com/aracred/AraCred/commit/a0931cbed5f9f91298af9d27a02d69468722488b): Update project.json","index":1201,"timestampMs":1586209230000},{"description":"[a356fe3](https://github.com/aracred/AraCred/commit/a356fe37b3ee2256d529a625a42d890962870096): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1202,"timestampMs":1586606578000},{"description":"[a3a0462](https://github.com/aracred/AraCred/commit/a3a0462dc68b9d35f30abd2ce16199a9450383f4): switch to mainnet","index":1203,"timestampMs":1586619306000},{"description":"[ab8fbf7](https://github.com/aracred/AraCred/commit/ab8fbf7d53b4152b4ec97c983405cc703df3a2bd): Merge branch 'master' of https://github.com/aracred/AraCred","index":1204,"timestampMs":1586635980000},{"description":"[ace3d82](https://github.com/aracred/AraCred/commit/ace3d821833c0157e8e3f74c06951fe79cbb49e7): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1205,"timestampMs":1586475455000},{"description":"[af3fc40](https://github.com/aracred/AraCred/commit/af3fc40b0b4f010f4236391bc245bab5c3fc5343): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1206,"timestampMs":1586801019000},{"description":"[b4e879f](https://github.com/aracred/AraCred/commit/b4e879fb7c6c79a659dacc784a3e2165411d7531): test transactionSettings.json","index":1207,"timestampMs":1586440952000},{"description":"[b55a7a1](https://github.com/aracred/AraCred/commit/b55a7a196b8f85817e8548bf7b9afba1341131e2): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1208,"timestampMs":1586566249000},{"description":"[b5e53ec](https://github.com/aracred/AraCred/commit/b5e53ece75d30f3d379adb3a07c8cf652434e773): Update project.json","index":1209,"timestampMs":1586704728000},{"description":"[b859060](https://github.com/aracred/AraCred/commit/b85906087b6422297975a655808e1ddf998fdc8c): add .gitignore","index":1210,"timestampMs":1586425156000},{"description":"[b28ca12](https://github.com/aracred/AraCred/commit/b28ca121bfda152ce8bacc325aa7a31f9a3edb1e): Backfill worksession photos","index":1211,"timestampMs":1586810374000},{"description":"[b2ec064](https://github.com/aracred/AraCred/commit/b2ec0646a7533828b003a7cc525ac0ec48c5d9a0): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1212,"timestampMs":1586692988000},{"description":"[b344928](https://github.com/aracred/AraCred/commit/b34492813251b626e0ef02911d7a0fe28aaa2b0f): Merge pull request #21 from mzargham/worksession-photos","index":1213,"timestampMs":1586810650000},{"description":"[b3bfd81](https://github.com/aracred/AraCred/commit/b3bfd8136d25f8aacc2b9267a3700f36f366792e): MAINNET","index":1214,"timestampMs":1586633830000},{"description":"[b3f72b5](https://github.com/aracred/AraCred/commit/b3f72b5f3ed774a1891f2da1a3c1b60af9272d84): Update setupAragon.js","index":1215,"timestampMs":1586631279000},{"description":"[bab488e](https://github.com/aracred/AraCred/commit/bab488e0531a826777829e70c4cf8f620202e881): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1216,"timestampMs":1586304876000},{"description":"[bb4c806](https://github.com/aracred/AraCred/commit/bb4c80608db52c03a33b09edbf8fdbffc666c664): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1217,"timestampMs":1586659664000},{"description":"[bcc0d1e](https://github.com/aracred/AraCred/commit/bcc0d1e18f56c0ee098c7a1316afa5252c5d3392): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1218,"timestampMs":1586326476000},{"description":"[be50399](https://github.com/aracred/AraCred/commit/be503991de7a3225cfc2888ab833abfccdb1d309): test setupAragon","index":1219,"timestampMs":1586439053000},{"description":"[be5b93a](https://github.com/aracred/AraCred/commit/be5b93ae59bf65b698f6ed6301d28218c8170e91): :((","index":1220,"timestampMs":1586645068000},{"description":"[bfb1be1](https://github.com/aracred/AraCred/commit/bfb1be19201eedf6f5556b76fb3cba77b694c535): Update addressbook.json","index":1221,"timestampMs":1587051708000},{"description":"[c46d5eb](https://github.com/aracred/AraCred/commit/c46d5eb8179fd34a5732394f59d40cf6e3b5a4e3): Update project.json","index":1222,"timestampMs":1586461592000},{"description":"[c5c9f44](https://github.com/aracred/AraCred/commit/c5c9f44334709db3c28eb81f1ee928a3823ae003): configure eslint","index":1223,"timestampMs":1586426867000},{"description":"[c676d5b](https://github.com/aracred/AraCred/commit/c676d5b790126e2af137ca1c53c8048db443a88a): merge with mainnet branch","index":1224,"timestampMs":1586659020000},{"description":"[c852446](https://github.com/aracred/AraCred/commit/c85244688604991c9ee1ae17a7bf62373a004fd1): Update project.json","index":1225,"timestampMs":1586462092000},{"description":"[c8d413c](https://github.com/aracred/AraCred/commit/c8d413c01f9aa1c9d272f96283367268ff49103f): update DAO settings","index":1226,"timestampMs":1586445094000},{"description":"[c04c305](https://github.com/aracred/AraCred/commit/c04c305dff31a60a5ea91270b07b5b46c4b734c3): mints every 24 hours","index":1227,"timestampMs":1586659508000},{"description":"[c0622fc](https://github.com/aracred/AraCred/commit/c0622fcf93369e37f99e4809cea077710b9677d9): Update project.json","index":1228,"timestampMs":1586710445000},{"description":"[c09ce59](https://github.com/aracred/AraCred/commit/c09ce59f6cb00f62380a8dca641fbd016f0d70a5): Update project.json","index":1229,"timestampMs":1586461896000},{"description":"[c0f3224](https://github.com/aracred/AraCred/commit/c0f32243cff400f34b36897db4e64d3ae2cec253): rinkeby branch","index":1230,"timestampMs":1586640763000},{"description":"[c191e57](https://github.com/aracred/AraCred/commit/c191e57f44662bcb753ec4c08a25545b0d25e284): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1231,"timestampMs":1586865848000},{"description":"[c264cfe](https://github.com/aracred/AraCred/commit/c264cfe1bc96c758079bffcd728f497d0d7c0117): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1232,"timestampMs":1587038694000},{"description":"[c34bc9c](https://github.com/aracred/AraCred/commit/c34bc9c573eacc008ca98653ddd2661f823ff9b2): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1233,"timestampMs":1587060270000},{"description":"[ca41c37](https://github.com/aracred/AraCred/commit/ca41c379a44e4ccadb2b56c359ff2ece8aa5b5de): add mint.js","index":1234,"timestampMs":1586442756000},{"description":"[cba7b74](https://github.com/aracred/AraCred/commit/cba7b7417f1aa04b9137d0eb1d2b41cfc1b84f9b): fingers crossed","index":1235,"timestampMs":1586656761000},{"description":"[ccde11b](https://github.com/aracred/AraCred/commit/ccde11b4e85afd9685dc9f58165148861adbe59e): logging","index":1236,"timestampMs":1586639218000},{"description":"[cee0c69](https://github.com/aracred/AraCred/commit/cee0c69332f9f5481d0ae7f1dcf1a8f92f346877): add setupAragon()","index":1237,"timestampMs":1586431949000},{"description":"[d44bc4f](https://github.com/aracred/AraCred/commit/d44bc4f2e2256f0ebe1af485b047d9567583ed85): Update project.json","index":1238,"timestampMs":1586711922000},{"description":"[d56ad45](https://github.com/aracred/AraCred/commit/d56ad45d57b3ca44c6702f66dbcf349dd39a9116): Update project.json","index":1239,"timestampMs":1586712103000},{"description":"[d63265d](https://github.com/aracred/AraCred/commit/d63265d1ec1ac6d5e5d661fc137bef3bc4752020): Update project.json","index":1240,"timestampMs":1586820040000},{"description":"[d6bcaf0](https://github.com/aracred/AraCred/commit/d6bcaf0ed530067e11be1321280fc83f3a289be2): Merge pull request #7 from aracred/processScores-patch","index":1241,"timestampMs":1586425693000},{"description":"[d8288bb](https://github.com/aracred/AraCred/commit/d8288bb356551f8609c84a09886c19fb4fd673b4): Create .deleteme","index":1242,"timestampMs":1586646488000},{"description":"[d83736f](https://github.com/aracred/AraCred/commit/d83736f0f5cc5c3fc415146a5ad80145b3a565a7): Update dao.json","index":1243,"timestampMs":1586657456000},{"description":"[d01e1a1](https://github.com/aracred/AraCred/commit/d01e1a1762cde70b0fb49e82ec5432de6d691fb3): Fix settings","index":1244,"timestampMs":1586109264000},{"description":"[d130287](https://github.com/aracred/AraCred/commit/d13028772ab946a65da8787a255248337864a5ba): test patch","index":1245,"timestampMs":1586395938000},{"description":"[d219bd2](https://github.com/aracred/AraCred/commit/d219bd2f62a0ec8ac06b82daf83499442e3cb173): edit workflow name","index":1246,"timestampMs":1586443142000},{"description":"[d383b8f](https://github.com/aracred/AraCred/commit/d383b8fd2e6815eb8a5099785a7ef5c4393e531e): Update project.json","index":1247,"timestampMs":1586704788000},{"description":"[da69104](https://github.com/aracred/AraCred/commit/da69104f37bc78c1c71a34b9fafe537f875ca7dc): remove cache","index":1248,"timestampMs":1586612834000},{"description":"[da9fa8e](https://github.com/aracred/AraCred/commit/da9fa8ec523e360ace96eba7bc72bedadc69c8ac): add mint to workflow","index":1249,"timestampMs":1586443040000},{"description":"[dbb4bbb](https://github.com/aracred/AraCred/commit/dbb4bbb4a48bf36b3890cb23012337c0bfbfc6c7): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1250,"timestampMs":1586584977000},{"description":"[dc00826](https://github.com/aracred/AraCred/commit/dc008266ba36121c746ddb6b60121b6e084d3065): Finalise setupAragon","index":1251,"timestampMs":1586439553000},{"description":"[defb8c5](https://github.com/aracred/AraCred/commit/defb8c56dbc8ed6a58674a7c569010ddc17fea0b): add sc config files","index":1252,"timestampMs":1586449851000},{"description":"[e4db1e5](https://github.com/aracred/AraCred/commit/e4db1e5c01390590a53e47424b6fc6389fbed459): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1253,"timestampMs":1586646613000},{"description":"[e5810c7](https://github.com/aracred/AraCred/commit/e5810c7e956182f58bacafd24c51f8be7e6af31f): add process grain, add DAO config file","index":1254,"timestampMs":1586440769000},{"description":"[e7d262b](https://github.com/aracred/AraCred/commit/e7d262bceecfcab743754d6d3a41fea1d74be955): Merge branch 'master' of https://github.com/aracred/AraCred","index":1255,"timestampMs":1586638167000},{"description":"[e86fcfd](https://github.com/aracred/AraCred/commit/e86fcfd2e1ddf643bc06ef0a08d439899b509c8a): fix mint.js","index":1256,"timestampMs":1586442958000},{"description":"[e8c0367](https://github.com/aracred/AraCred/commit/e8c036745f6c3d82f34e46e6f40ce520f53be1ef): make SC run","index":1257,"timestampMs":1586443278000},{"description":"[e8d2566](https://github.com/aracred/AraCred/commit/e8d2566e023a7cefb04c5157b0f85568fcb9a3c5): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1258,"timestampMs":1587017056000},{"description":"[e11bcaa](https://github.com/aracred/AraCred/commit/e11bcaa214504bd338f41f0684c387377e91d223): added weights.json","index":1259,"timestampMs":1586108556000},{"description":"[e27f889](https://github.com/aracred/AraCred/commit/e27f889ed7e899c482d528e5bafb0a950047db35): fix setup aragon","index":1260,"timestampMs":1586632045000},{"description":"[ecc49af](https://github.com/aracred/AraCred/commit/ecc49af4d29ddb86bece5cf38e3295d03d80efc8): :(","index":1261,"timestampMs":1586644275000},{"description":"[ed75cb5](https://github.com/aracred/AraCred/commit/ed75cb58e840a9712a7fe5678e0234538101824c): Add package-lock.json","index":1262,"timestampMs":1586439910000},{"description":"[ed85892](https://github.com/aracred/AraCred/commit/ed85892fe323a252ac0d44ca5ce619fe73cc8a5d): hardcode","index":1263,"timestampMs":1586635090000},{"description":"[ee805c2](https://github.com/aracred/AraCred/commit/ee805c230d58b420f39bedd6d7dc5c10c8f14856): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1264,"timestampMs":1586563402000},{"description":"[ee958e4](https://github.com/aracred/AraCred/commit/ee958e4ea4a9d7db08a45e558912449245e1f619): update readme","index":1265,"timestampMs":1586761063000},{"description":"[efe2a21](https://github.com/aracred/AraCred/commit/efe2a210242adcd52a288d57f373b09187b88c17): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1266,"timestampMs":1586714645000},{"description":"[f4379c3](https://github.com/aracred/AraCred/commit/f4379c34b30691a61e67438d4da4192f7cb18710): Update addressbook.json","index":1267,"timestampMs":1587049279000},{"description":"[f4597ea](https://github.com/aracred/AraCred/commit/f4597eaa6b0681ebfb7e32991fc295f52427d199): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1268,"timestampMs":1586630029000},{"description":"[f4b57f6](https://github.com/aracred/AraCred/commit/f4b57f657a24f0feb175f404718f49ffc506edc0): Rmove package.lock","index":1269,"timestampMs":1586425884000},{"description":"[f5b6b5b](https://github.com/aracred/AraCred/commit/f5b6b5b9b8ab493342591799369bab4473ad4bd5): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1270,"timestampMs":1586930710000},{"description":"[f748975](https://github.com/aracred/AraCred/commit/f74897580057b86bf1ec803694b2494dc5099ba4): Update project.json","index":1271,"timestampMs":1586208275000},{"description":"[f024b3a](https://github.com/aracred/AraCred/commit/f024b3aa2227eccef235a3b4d5a76e7f04cc78fc): Update run_cli.yml","index":1272,"timestampMs":1586641071000},{"description":"[f13bf3f](https://github.com/aracred/AraCred/commit/f13bf3f7a6dfeebd2725261a11357612547e0783): add badges to readme","index":1273,"timestampMs":1586446525000},{"description":"[f165058](https://github.com/aracred/AraCred/commit/f1650581495bd5ba951e6aca3adc65aa4271e7ec): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1274,"timestampMs":1586391268000},{"description":"[f3484bc](https://github.com/aracred/AraCred/commit/f3484bc0a5f204b3b6cd3159a0e3c274c2056154): new DAO /#/chicklet","index":1275,"timestampMs":1586607022000},{"description":"[f370b16](https://github.com/aracred/AraCred/commit/f370b16891f4dc805ea30ac6b5a3042c8224bb45): remove docs","index":1276,"timestampMs":1586457498000},{"description":"[fb4fcae](https://github.com/aracred/AraCred/commit/fb4fcae94286c8bcdda97e172bc867ab4e08b76c): fingers crossed","index":1277,"timestampMs":1586656082000},{"description":"[fce3339](https://github.com/aracred/AraCred/commit/fce33399d0696995385d8895995cb0fdaad56615): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1278,"timestampMs":1586504710000},{"description":"[fdaff82](https://github.com/aracred/AraCred/commit/fdaff82509a99dc7adb3d1289b2ad02a339fe19e): logging","index":1279,"timestampMs":1586639647000},{"description":"[fe865a6](https://github.com/aracred/AraCred/commit/fe865a679a723590923af6394366b58fb01c8f50): test patch","index":1280,"timestampMs":1586396173000},{"description":"[ff708c3](https://github.com/aracred/AraCred/commit/ff708c3b7352a9b659df8120351e6f1eab566a2a): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1281,"timestampMs":1586450503000},{"description":"[ffec223](https://github.com/aracred/AraCred/commit/ffec223be5fffa16d0ce2effb0aeed1b959a2532): Update README.md","index":1282,"timestampMs":1586109667000},{"description":"[07d5c9e](https://github.com/aracred/aracred-cli/commit/07d5c9eafed794bfbde34705c0232dfdbb47bd9c): Merge pull request #6 from pythonpete32/source-validation","index":1283,"timestampMs":1585184379000},{"description":"[030e8ec](https://github.com/aracred/aracred-cli/commit/030e8ecc0d83eb09cc3ac614a607eb119aab7fa3): aracli => aracred","index":1284,"timestampMs":1583868918000},{"description":"[0c32d96](https://github.com/aracred/aracred-cli/commit/0c32d96da86885a0d730f8398a23403372117d4b): start processCSV","index":1285,"timestampMs":1583846036000},{"description":"[0e6c465](https://github.com/aracred/aracred-cli/commit/0e6c46576a8feeb07054584458ebdec61fd886f3): Update README.md","index":1286,"timestampMs":1586115483000},{"description":"[17a658c](https://github.com/aracred/aracred-cli/commit/17a658ce22542db61a1bae02316d8c0e082fa52f): add github validation","index":1287,"timestampMs":1585184096000},{"description":"[1041be1](https://github.com/aracred/aracred-cli/commit/1041be12a4aee28587ede5b1a532c6595de78c70): Update README.md","index":1288,"timestampMs":1586115750000},{"description":"[135b198](https://github.com/aracred/aracred-cli/commit/135b198b82d822d1d1a15b3683da0b76487c3e6d): Small fixes","index":1289,"timestampMs":1584727008000},{"description":"[1a32526](https://github.com/aracred/aracred-cli/commit/1a3252694d719fb389bb10c0e24d727e61a3f8a3): tidy","index":1290,"timestampMs":1586119837000},{"description":"[1e08344](https://github.com/aracred/aracred-cli/commit/1e08344d06d9089d381e91e2bee0c1adf3fe3b9d): Merge branch 'master' of https://github.com/aracred/aracred-cli","index":1291,"timestampMs":1586119867000},{"description":"[32e087e](https://github.com/aracred/aracred-cli/commit/32e087e76f7e1c5911790ed64508cfb59e448369): initial commit","index":1292,"timestampMs":1583841786000},{"description":"[3ddfb88](https://github.com/aracred/aracred-cli/commit/3ddfb88738e47c20cf9ea58c2efd792aee1b6129): Saves JSON & CSV","index":1293,"timestampMs":1583855508000},{"description":"[3e76da9](https://github.com/aracred/aracred-cli/commit/3e76da91166b4e618c16fcf03a91656654793ed9): Merge pull request #3 from sembrestels/local-labels","index":1294,"timestampMs":1584736018000},{"description":"[46377a9](https://github.com/aracred/aracred-cli/commit/46377a96ccd136b5401df0ed5032a105a385dd49): Update README.md","index":1295,"timestampMs":1586115035000},{"description":"[5e8fc8e](https://github.com/aracred/aracred-cli/commit/5e8fc8eb37bcd473ee4acb90c32d8e7a8f6a77c7): Merge pull request #1 from burrrata/patch-1","index":1296,"timestampMs":1584727355000},{"description":"[5f858e9](https://github.com/aracred/aracred-cli/commit/5f858e9e9b52236fc3a085b38b1c7c5623dc814e): Update README.md","index":1297,"timestampMs":1586116855000},{"description":"[60eb231](https://github.com/aracred/aracred-cli/commit/60eb231938e7ad390175a13b46cf1161e23e915c): Add local labels generation feature","index":1298,"timestampMs":1584733391000},{"description":"[6cf9256](https://github.com/aracred/aracred-cli/commit/6cf92566dda9fff26663c6dfe2e3ae277ae0d908): add github workflow","index":1299,"timestampMs":1585132575000},{"description":"[7a3226b](https://github.com/aracred/aracred-cli/commit/7a3226b449f5a2bb9e1d0528959c3aca8ce18f8f): add github entry in prompt","index":1300,"timestampMs":1585128878000},{"description":"[8b3379b](https://github.com/aracred/aracred-cli/commit/8b3379b6dedd5d8ad5970d14cdd6c507909d3fcf): Improve readme and fix typos","index":1301,"timestampMs":1584729372000},{"description":"[93373cc](https://github.com/aracred/aracred-cli/commit/93373ccc6bf6185127f6b17ad5626cc110fe5e08): Merge pull request #4 from pythonpete32/wallaby","index":1302,"timestampMs":1585126267000},{"description":"[9adcfac](https://github.com/aracred/aracred-cli/commit/9adcfac02e9dc6203f733946b48815c16c4bda6a): Update README.md","index":1303,"timestampMs":1586115569000},{"description":"[a7eb7ab](https://github.com/aracred/aracred-cli/commit/a7eb7abbb97a3acb715b06da2a906cd6646b56bc): add willaby & jest support","index":1304,"timestampMs":1585126105000},{"description":"[a0ebe6c](https://github.com/aracred/aracred-cli/commit/a0ebe6c6c881f02ae127c92abd3795e597009031): update","index":1305,"timestampMs":1584722599000},{"description":"[a11f8d6](https://github.com/aracred/aracred-cli/commit/a11f8d670ef711b410415b8444330781522c3273): Update README.md","index":1306,"timestampMs":1586115692000},{"description":"[a39a9e3](https://github.com/aracred/aracred-cli/commit/a39a9e3d229c78b1d5215a8c6faf435a23b996ab): Update README.md","index":1307,"timestampMs":1586115737000},{"description":"[b5820a4](https://github.com/aracred/aracred-cli/commit/b5820a49d275ad3e2441dc49ba0e9c932e7e01ed): add discorse validation","index":1308,"timestampMs":1585142847000},{"description":"[b8100f7](https://github.com/aracred/aracred-cli/commit/b8100f78f6295a440d2e6a9e95a9099504c53374): Update README.md","index":1309,"timestampMs":1586115523000},{"description":"[b06798e](https://github.com/aracred/aracred-cli/commit/b06798edf2d6f86723961bdd7a387dda3eadcb00): initial commit","index":1310,"timestampMs":1583707484000},{"description":"[bc959b6](https://github.com/aracred/aracred-cli/commit/bc959b6cd0e80d193876a8edb8ff0f18142ba558): Update readme.md","index":1311,"timestampMs":1584925959000},{"description":"[d265f3f](https://github.com/aracred/aracred-cli/commit/d265f3f3a462805b6c27dc7507b15be038730a06): working","index":1312,"timestampMs":1584468261000},{"description":"[dccb0ba](https://github.com/aracred/aracred-cli/commit/dccb0bae8344da0fa4bc886fd642bd819e5ab204): Merge pull request #7 from pythonpete32/source-validation","index":1313,"timestampMs":1585184645000},{"description":"[dcba3eb](https://github.com/aracred/aracred-cli/commit/dcba3eb54f781973155ef382ed674685adb9491f): Update README.md","index":1314,"timestampMs":1586115159000},{"description":"[fd8dac9](https://github.com/aracred/aracred-cli/commit/fd8dac99c58c603001fa56c8d2dd2553db8fa6c0): Merge pull request #5 from pythonpete32/github","index":1315,"timestampMs":1585134244000},{"description":"[fdf6857](https://github.com/aracred/aracred-cli/commit/fdf6857a29d796d7cfdea7f7d45a67a9c05d50d2): Merge pull request #2 from sembrestels/small-fix","index":1316,"timestampMs":1584727333000},{"description":"[#12](https://github.com/aracred/AraCred/issues/12): Setting up a Discord server with SourceCred and GitHub actions","index":1317,"timestampMs":1586638125000},{"description":"[#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":1318,"timestampMs":1586704018000},{"description":"[#15](https://github.com/aracred/AraCred/issues/15): AraCred Deployment Automation","index":1319,"timestampMs":1586705495000},{"description":"[#16](https://github.com/aracred/AraCred/issues/16): AraCred Dogfooding","index":1320,"timestampMs":1586705553000},{"description":"[#17](https://github.com/aracred/AraCred/issues/17): AraCred Pilot Projects","index":1321,"timestampMs":1586705865000},{"description":"[#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":1322,"timestampMs":1586712839000},{"description":"[#19](https://github.com/aracred/AraCred/issues/19): npx create-aracred","index":1323,"timestampMs":1586768126000},{"description":"[#2](https://github.com/aracred/AraCred/issues/2): re write `processScores.js`","index":1324,"timestampMs":1586269776000},{"description":"[#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":1325,"timestampMs":1586819336000},{"description":"[#23](https://github.com/aracred/AraCred/issues/23): AraCred Default Periods","index":1326,"timestampMs":1586821830000},{"description":"[#24](https://github.com/aracred/AraCred/issues/24): CredRank White/Black Lists","index":1327,"timestampMs":1586823283000},{"description":"[#25](https://github.com/aracred/AraCred/issues/25): AraCred MVP","index":1328,"timestampMs":1586858542000},{"description":"[#26](https://github.com/aracred/AraCred/issues/26): Simple Token Calculations","index":1329,"timestampMs":1586921943000},{"description":"[#3](https://github.com/aracred/AraCred/issues/3): Pass private key as GitHub secret","index":1330,"timestampMs":1586390052000},{"description":"[#4](https://github.com/aracred/AraCred/issues/4): Tidy Repo","index":1331,"timestampMs":1586390446000},{"description":"[#5](https://github.com/aracred/AraCred/issues/5): Add config file for DAO","index":1332,"timestampMs":1586390871000},{"description":"[#6](https://github.com/aracred/AraCred/issues/6): Create unit tests for `src/processGrain()`","index":1333,"timestampMs":1586396494000},{"description":"[#8](https://github.com/aracred/AraCred/issues/8): Write `setupAragon.test.js`","index":1334,"timestampMs":1586435403000},{"description":"[#9](https://github.com/aracred/AraCred/issues/9): Configure SC to save to config file","index":1335,"timestampMs":1586440155000},{"description":"[#3](https://github.com/aracred/TheSource/issues/3): GUIDE: Setting up a Discord server with SourceCred and GitHub actions","index":1336,"timestampMs":1586104764000},{"description":"[#1](https://github.com/aracred/aracred-cli/issues/1): AraCred Manual Mode Guide","index":1337,"timestampMs":1586116752000},{"description":"[#1](https://github.com/aracred/bot/issues/1): SourceCredified AraCred 1UPs 🍄","index":1338,"timestampMs":1586917207000},{"description":"[#2](https://github.com/aracred/bot/issues/2): Parser: namespace bot commands","index":1339,"timestampMs":1586934042000},{"description":"[#3](https://github.com/aracred/bot/issues/3): Add whitelisted channels environment variable","index":1340,"timestampMs":1586934224000},{"description":"[#5](https://github.com/aracred/bot/issues/5): Validation: Properly check addresses before submitting them","index":1341,"timestampMs":1586990170000},{"description":"[#6](https://github.com/aracred/bot/issues/6): Onboarding flow: Make bot conversational","index":1342,"timestampMs":1586990449000},{"description":"[#7](https://github.com/aracred/bot/issues/7): Bot initialization: Add initialization and validation flow for startup","index":1343,"timestampMs":1586990584000},{"description":"[#1](https://github.com/aracred/comms/issues/1): AraCred Overview Blog Post","index":1344,"timestampMs":1586709265000},{"description":"[#1](https://github.com/aracred/leaderboard/issues/1): New Leaderboard UI","index":1345,"timestampMs":1586706267000},{"description":"[#2](https://github.com/aracred/leaderboard/issues/2): Leaderboard Bot","index":1346,"timestampMs":1586706318000},{"description":"[#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":1347,"timestampMs":1586666816000},{"description":"[#2](https://github.com/aracred/onboarding/issues/2): AraCred Deployment","index":1348,"timestampMs":1586666998000},{"description":"[#3](https://github.com/aracred/onboarding/issues/3): User Onboarding Bot","index":1349,"timestampMs":1586705051000},{"description":"[#4](https://github.com/aracred/onboarding/issues/4): User Onboarding Survey","index":1350,"timestampMs":1586709014000},{"description":"[#5](https://github.com/aracred/onboarding/issues/5): Resolve app addresses from DAO name in dao.json","index":1351,"timestampMs":1586772477000},{"description":"[#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":1352,"timestampMs":1586772739000},{"description":"[#10](https://github.com/aracred/website/issues/10): Define AraCred Market Mechanics","index":1353,"timestampMs":1586705290000},{"description":"[#11](https://github.com/aracred/website/issues/11): Fix Spelling Errors","index":1354,"timestampMs":1586712148000},{"description":"[#2](https://github.com/aracred/website/issues/2): Docusaurus Deployment Tips","index":1355,"timestampMs":1586571331000},{"description":"[#7](https://github.com/aracred/website/issues/7): AraCred Market Simulation","index":1356,"timestampMs":1586662991000},{"description":"[#1](https://github.com/aracred/AraCred/pull/1): Split config","index":1357,"timestampMs":1586264552000},{"description":"[#10](https://github.com/aracred/AraCred/pull/10): Close a bunch of issues","index":1358,"timestampMs":1586446688000},{"description":"[#11](https://github.com/aracred/AraCred/pull/11): add sc config files","index":1359,"timestampMs":1586449916000},{"description":"[#13](https://github.com/aracred/AraCred/pull/13): Mainnet test","index":1360,"timestampMs":1586658580000},{"description":"[#20](https://github.com/aracred/AraCred/pull/20): Add Evalir to Aracred","index":1361,"timestampMs":1586802611000},{"description":"[#21](https://github.com/aracred/AraCred/pull/21): Backfill worksession photos","index":1362,"timestampMs":1586810530000},{"description":"[#27](https://github.com/aracred/AraCred/pull/27): session 3 photos","index":1363,"timestampMs":1586995113000},{"description":"[#7](https://github.com/aracred/AraCred/pull/7): Process scores patch","index":1364,"timestampMs":1586425681000},{"description":"[#1](https://github.com/aracred/TheSource/pull/1): Update generate-cred.yml","index":1365,"timestampMs":1586103666000},{"description":"[#2](https://github.com/aracred/TheSource/pull/2): Update generate-cred.yml","index":1366,"timestampMs":1586104083000},{"description":"[#4](https://github.com/aracred/bot/pull/4): DevOps: Add monitoring logs to commands","index":1367,"timestampMs":1586970997000},{"description":"[#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1368,"timestampMs":1587070982000},{"description":"[#9](https://github.com/aracred/bot/pull/9): Added command namespace recognition - !ac [command]","index":1369,"timestampMs":1587079858000},{"description":"[#1](https://github.com/aracred/website/pull/1): starting to docusaurus","index":1370,"timestampMs":1586566012000},{"description":"[#12](https://github.com/aracred/website/pull/12): Fix diagram url on \"Token Minting and Supply\" page","index":1371,"timestampMs":1586717760000},{"description":"[#13](https://github.com/aracred/website/pull/13): Docs2","index":1372,"timestampMs":1586727817000},{"description":"[#14](https://github.com/aracred/website/pull/14): Docs2","index":1373,"timestampMs":1586797004000},{"description":"[#15](https://github.com/aracred/website/pull/15): Fixed typo","index":1374,"timestampMs":1586914696000},{"description":"[#16](https://github.com/aracred/website/pull/16): PageRank link","index":1375,"timestampMs":1586987888000},{"description":"[#3](https://github.com/aracred/website/pull/3): didn't actually add users section","index":1376,"timestampMs":1586633970000},{"description":"[#4](https://github.com/aracred/website/pull/4): Docs2","index":1377,"timestampMs":1586645179000},{"description":"[#5](https://github.com/aracred/website/pull/5): Docs2","index":1378,"timestampMs":1586654103000},{"description":"[#6](https://github.com/aracred/website/pull/6): before adding live code plugin","index":1379,"timestampMs":1586656931000},{"description":"[#8](https://github.com/aracred/website/pull/8): Docs2","index":1380,"timestampMs":1586663009000},{"description":"[#9](https://github.com/aracred/website/pull/9): Docs2","index":1381,"timestampMs":1586664552000},{"description":"[aracred/AraCred](https://github.com/aracred/AraCred)","index":1382,"timestampMs":1586107856000},{"description":"[aracred/TheSource](https://github.com/aracred/TheSource)","index":1383,"timestampMs":1586103580000},{"description":"[aracred/aracred-cli](https://github.com/aracred/aracred-cli)","index":1384,"timestampMs":1586112376000},{"description":"[aracred/bot](https://github.com/aracred/bot)","index":1385,"timestampMs":1586801046000},{"description":"[aracred/comms](https://github.com/aracred/comms)","index":1386,"timestampMs":1586709194000},{"description":"[aracred/governance](https://github.com/aracred/governance)","index":1387,"timestampMs":1586709960000},{"description":"[aracred/leaderboard](https://github.com/aracred/leaderboard)","index":1388,"timestampMs":1586706187000},{"description":"[aracred/onboarding](https://github.com/aracred/onboarding)","index":1389,"timestampMs":1586666527000},{"description":"[aracred/website](https://github.com/aracred/website)","index":1390,"timestampMs":1586103440000},{"description":"[review](https://github.com/aracred/AraCred/pull/13#pullrequestreview-391815975) on [#13](https://github.com/aracred/AraCred/pull/13): Mainnet test","index":1391,"timestampMs":1586658808000},{"description":"[review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1392,"timestampMs":1587071400000},{"description":"[review](https://github.com/aracred/bot/pull/8#pullrequestreview-395035075) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1393,"timestampMs":1587075078000},{"description":"[review](https://github.com/aracred/website/pull/15#pullrequestreview-393444362) on [#15](https://github.com/aracred/website/pull/15): Fixed typo","index":1394,"timestampMs":1586924060000},{"description":"[@AlexMasmej](https://github.com/AlexMasmej)","index":1395,"timestampMs":null},{"description":"[@Beanow](https://github.com/Beanow)","index":1396,"timestampMs":null},{"description":"[@Evalir](https://github.com/Evalir)","index":1397,"timestampMs":null},{"description":"[@c0mput3rxz](https://github.com/c0mput3rxz)","index":1398,"timestampMs":null},{"description":"[@vntrp](https://github.com/vntrp)","index":1399,"timestampMs":null},{"description":"@0xGabi","index":1400,"timestampMs":null},{"description":"@Aaron","index":1401,"timestampMs":null},{"description":"@burrrata","index":1402,"timestampMs":null},{"description":"@crisorg","index":1403,"timestampMs":null},{"description":"@cslarson","index":1404,"timestampMs":null},{"description":"@dandelion","index":1405,"timestampMs":null},{"description":"@evalir","index":1406,"timestampMs":null},{"description":"@fabriziovigevani","index":1407,"timestampMs":null},{"description":"@fioreb","index":1408,"timestampMs":null},{"description":"@hammadj","index":1409,"timestampMs":null},{"description":"@li","index":1410,"timestampMs":null},{"description":"@lkngtn","index":1411,"timestampMs":null},{"description":"@mzargham","index":1412,"timestampMs":null},{"description":"@onbjerg","index":1413,"timestampMs":null},{"description":"@rperez","index":1414,"timestampMs":null},{"description":"@sembrestels","index":1415,"timestampMs":null},{"description":"@willjgriff","index":1416,"timestampMs":null}],"sortedNodeAddresses":[["sourcecred","discord","MEMBER","bot","699326460120530944"],["sourcecred","discord","MEMBER","user","143776454050709505"],["sourcecred","discord","MEMBER","user","199630270285086720"],["sourcecred","discord","MEMBER","user","208321561982271489"],["sourcecred","discord","MEMBER","user","291388682710024192"],["sourcecred","discord","MEMBER","user","333143183355543552"],["sourcecred","discord","MEMBER","user","371754999304290304"],["sourcecred","discord","MEMBER","user","440281764204642314"],["sourcecred","discord","MEMBER","user","464169801036726292"],["sourcecred","discord","MEMBER","user","505789102222737420"],["sourcecred","discord","MEMBER","user","537858848912834561"],["sourcecred","discord","MEMBER","user","633708951447535616"],["sourcecred","discord","MEMBER","user","665203331639148553"],["sourcecred","discord","MEMBER","user","683892894767251489"],["sourcecred","discord","MESSAGE","695344752031432766","695669843034243134"],["sourcecred","discord","MESSAGE","695344752031432766","696451005914546256"],["sourcecred","discord","MESSAGE","695344752031432766","696454968831508630"],["sourcecred","discord","MESSAGE","695344752031432766","696455224532926464"],["sourcecred","discord","MESSAGE","695344752031432766","696609260196593664"],["sourcecred","discord","MESSAGE","695344752031432766","696708274682069062"],["sourcecred","discord","MESSAGE","695344752031432766","696730540039995493"],["sourcecred","discord","MESSAGE","695344752031432766","696740396331696198"],["sourcecred","discord","MESSAGE","695344752031432766","696769305131614260"],["sourcecred","discord","MESSAGE","695344752031432766","696853096441184326"],["sourcecred","discord","MESSAGE","695344752031432766","698673271729553469"],["sourcecred","discord","MESSAGE","695344752031432766","698691171811328080"],["sourcecred","discord","MESSAGE","695344752031432766","698710294427467857"],["sourcecred","discord","MESSAGE","695344752031432766","698710365046833192"],["sourcecred","discord","MESSAGE","695344752031432766","698799127244308550"],["sourcecred","discord","MESSAGE","695344752031432766","698897288373993508"],["sourcecred","discord","MESSAGE","695344752031432766","698919569078878289"],["sourcecred","discord","MESSAGE","695344752031432766","698921167011971168"],["sourcecred","discord","MESSAGE","695344752031432766","698921390845198426"],["sourcecred","discord","MESSAGE","695344752031432766","698932174396850236"],["sourcecred","discord","MESSAGE","695344752031432766","698935929942966332"],["sourcecred","discord","MESSAGE","695344752031432766","698941350531301477"],["sourcecred","discord","MESSAGE","695344752031432766","698946297012420619"],["sourcecred","discord","MESSAGE","695344752031432766","698965088530595990"],["sourcecred","discord","MESSAGE","695344752031432766","698965418370400296"],["sourcecred","discord","MESSAGE","695344752031432766","698968459890917436"],["sourcecred","discord","MESSAGE","695344752031432766","698968989878976612"],["sourcecred","discord","MESSAGE","695344752031432766","698969370533298296"],["sourcecred","discord","MESSAGE","695344752031432766","698969730580742174"],["sourcecred","discord","MESSAGE","695344752031432766","698970943955140738"],["sourcecred","discord","MESSAGE","695344752031432766","698973708316049488"],["sourcecred","discord","MESSAGE","695344752031432766","698982179069362196"],["sourcecred","discord","MESSAGE","695344752031432766","699006982681657354"],["sourcecred","discord","MESSAGE","695344752031432766","699007297099268116"],["sourcecred","discord","MESSAGE","695344752031432766","699016223303794728"],["sourcecred","discord","MESSAGE","695344752031432766","699020835096231937"],["sourcecred","discord","MESSAGE","695344752031432766","699021694240686190"],["sourcecred","discord","MESSAGE","695344752031432766","699022762215211088"],["sourcecred","discord","MESSAGE","695344752031432766","699024432244588644"],["sourcecred","discord","MESSAGE","695344752031432766","699025335148216410"],["sourcecred","discord","MESSAGE","695344752031432766","699124769349566484"],["sourcecred","discord","MESSAGE","695344752031432766","699137595724267520"],["sourcecred","discord","MESSAGE","695344752031432766","699302777167413379"],["sourcecred","discord","MESSAGE","695344752031432766","699304903796981771"],["sourcecred","discord","MESSAGE","695344752031432766","699306499930980452"],["sourcecred","discord","MESSAGE","695344752031432766","699318638519255111"],["sourcecred","discord","MESSAGE","695344752031432766","699325373472702534"],["sourcecred","discord","MESSAGE","695344752031432766","699325915578236949"],["sourcecred","discord","MESSAGE","695344752031432766","699326575627206778"],["sourcecred","discord","MESSAGE","695344752031432766","699342838756016128"],["sourcecred","discord","MESSAGE","695344752031432766","699358233437143163"],["sourcecred","discord","MESSAGE","695344752031432766","699383579402174494"],["sourcecred","discord","MESSAGE","695344752031432766","699636647557464194"],["sourcecred","discord","MESSAGE","695344752031432766","699696022477340735"],["sourcecred","discord","MESSAGE","695344752031432766","700038397376331798"],["sourcecred","discord","MESSAGE","695344917068906598","697073300131807274"],["sourcecred","discord","MESSAGE","695344917068906598","697081143551328256"],["sourcecred","discord","MESSAGE","695344917068906598","697318813192028200"],["sourcecred","discord","MESSAGE","695344917068906598","697375832364023889"],["sourcecred","discord","MESSAGE","696400331260821586","698659683526901810"],["sourcecred","discord","MESSAGE","696400331260821586","699287660589613148"],["sourcecred","discord","MESSAGE","696420039141752863","696427343220047872"],["sourcecred","discord","MESSAGE","696420039141752863","696440757908799568"],["sourcecred","discord","MESSAGE","696420039141752863","696441890048049232"],["sourcecred","discord","MESSAGE","696420039141752863","696452154268975225"],["sourcecred","discord","MESSAGE","696420039141752863","696730851802742794"],["sourcecred","discord","MESSAGE","696420039141752863","696789204767866911"],["sourcecred","discord","MESSAGE","696420039141752863","699020484167073792"],["sourcecred","discord","MESSAGE","696420039141752863","699122711745527878"],["sourcecred","discord","MESSAGE","696420039141752863","699123164340551691"],["sourcecred","discord","MESSAGE","696420039141752863","699274952301609111"],["sourcecred","discord","MESSAGE","696420039141752863","699275129204637708"],["sourcecred","discord","MESSAGE","696420039141752863","699275497984622760"],["sourcecred","discord","MESSAGE","696420039141752863","699276546795372595"],["sourcecred","discord","MESSAGE","696420039141752863","699277478530646016"],["sourcecred","discord","MESSAGE","696420039141752863","699278809974833224"],["sourcecred","discord","MESSAGE","696420039141752863","699404949448163368"],["sourcecred","discord","MESSAGE","696420039141752863","699406916300046346"],["sourcecred","discord","MESSAGE","696420039141752863","699407535194767410"],["sourcecred","discord","MESSAGE","696420039141752863","699408033343733841"],["sourcecred","discord","MESSAGE","696420039141752863","699410487020093501"],["sourcecred","discord","MESSAGE","696420039141752863","699558251074682931"],["sourcecred","discord","MESSAGE","696420039141752863","699560532046250034"],["sourcecred","discord","MESSAGE","696420039141752863","699939694221328435"],["sourcecred","discord","MESSAGE","696420039141752863","700016555521736837"],["sourcecred","discord","MESSAGE","696420039141752863","700064770367160361"],["sourcecred","discord","MESSAGE","696420039141752863","700064920104075394"],["sourcecred","discord","MESSAGE","696420039141752863","700073516900417556"],["sourcecred","discord","MESSAGE","696420039141752863","700078148615798814"],["sourcecred","discord","MESSAGE","696420039141752863","700083246087667833"],["sourcecred","discord","MESSAGE","696420039141752863","700085865933832252"],["sourcecred","discord","MESSAGE","696420039141752863","700087985634541678"],["sourcecred","discord","MESSAGE","696420039141752863","700345588725841990"],["sourcecred","discord","MESSAGE","696420039141752863","700354840445976616"],["sourcecred","discord","MESSAGE","696420039141752863","700468593451597902"],["sourcecred","discord","MESSAGE","696420197644632116","698667046661128244"],["sourcecred","discord","MESSAGE","696420197644632116","698672127418695751"],["sourcecred","discord","MESSAGE","696420197644632116","698673539011837994"],["sourcecred","discord","MESSAGE","696420197644632116","698683402920001637"],["sourcecred","discord","MESSAGE","696420197644632116","698956579168321617"],["sourcecred","discord","MESSAGE","696420197644632116","699017594287685672"],["sourcecred","discord","MESSAGE","696420197644632116","699283043940302898"],["sourcecred","discord","MESSAGE","696420197644632116","699284090607763506"],["sourcecred","discord","MESSAGE","696420197644632116","699303864872075295"],["sourcecred","discord","MESSAGE","696420197644632116","699352914476400712"],["sourcecred","discord","MESSAGE","698942081858666527","699821888431587439"],["sourcecred","discord","MESSAGE","698942081858666527","699822779670724650"],["sourcecred","discord","MESSAGE","700023168995295233","700033440564641854"],["sourcecred","discord","MESSAGE","700023168995295233","700036022368731256"],["sourcecred","discord","MESSAGE","700023168995295233","700038868707180644"],["sourcecred","discord","MESSAGE","700023168995295233","700039441799970969"],["sourcecred","discord","MESSAGE","700023168995295233","700040376085381152"],["sourcecred","discord","MESSAGE","700023168995295233","700040917926543422"],["sourcecred","discord","MESSAGE","700023168995295233","700040992916766780"],["sourcecred","discord","MESSAGE","700023168995295233","700044206176993470"],["sourcecred","discord","MESSAGE","700023168995295233","700044421760286721"],["sourcecred","discord","MESSAGE","700023168995295233","700044496049799228"],["sourcecred","discord","MESSAGE","700023168995295233","700044548411490335"],["sourcecred","discord","MESSAGE","700023168995295233","700044635619328131"],["sourcecred","discord","MESSAGE","700023168995295233","700044689285316738"],["sourcecred","discord","MESSAGE","700023168995295233","700049028251123832"],["sourcecred","discord","MESSAGE","700023168995295233","700049257490808933"],["sourcecred","discord","MESSAGE","700023168995295233","700049378643017889"],["sourcecred","discord","MESSAGE","700023168995295233","700051768008114186"],["sourcecred","discord","MESSAGE","700023168995295233","700055780807802900"],["sourcecred","discord","MESSAGE","700023168995295233","700056792524128306"],["sourcecred","discord","MESSAGE","700023168995295233","700059334679330946"],["sourcecred","discord","MESSAGE","700023168995295233","700059353306234910"],["sourcecred","discord","MESSAGE","700023168995295233","700059384751063091"],["sourcecred","discord","MESSAGE","700023168995295233","700059438136033361"],["sourcecred","discord","MESSAGE","700023168995295233","700059438526103572"],["sourcecred","discord","MESSAGE","700023168995295233","700059538023514154"],["sourcecred","discord","MESSAGE","700023168995295233","700061097583050871"],["sourcecred","discord","MESSAGE","700023168995295233","700062058405953678"],["sourcecred","discord","MESSAGE","700023168995295233","700062189503119381"],["sourcecred","discord","MESSAGE","700023168995295233","700062400774275204"],["sourcecred","discord","MESSAGE","700023168995295233","700063628711166054"],["sourcecred","discord","MESSAGE","700023168995295233","700064631778967634"],["sourcecred","discord","MESSAGE","700023168995295233","700064632144003103"],["sourcecred","discord","MESSAGE","700023168995295233","700118599003668510"],["sourcecred","discord","MESSAGE","700023168995295233","700335319349985310"],["sourcecred","discord","MESSAGE","700023168995295233","700335919315550299"],["sourcecred","discord","MESSAGE","700023168995295233","700365992571699350"],["sourcecred","discord","MESSAGE","700023168995295233","700366555233517630"],["sourcecred","discord","MESSAGE","700023168995295233","700367514638483537"],["sourcecred","discord","MESSAGE","700023168995295233","700369922630615040"],["sourcecred","discord","MESSAGE","700023168995295233","700370207419662458"],["sourcecred","discord","MESSAGE","700023168995295233","700370372230643763"],["sourcecred","discord","MESSAGE","700023168995295233","700371208880914563"],["sourcecred","discord","MESSAGE","700023168995295233","700371209241624656"],["sourcecred","discord","MESSAGE","700023168995295233","700371558480216124"],["sourcecred","discord","MESSAGE","700023168995295233","700397237930295386"],["sourcecred","discord","MESSAGE","700023168995295233","700397481799974962"],["sourcecred","discord","MESSAGE","700023168995295233","700397482362011769"],["sourcecred","discord","MESSAGE","700023168995295233","700397866581229620"],["sourcecred","discord","MESSAGE","700023168995295233","700397927478067221"],["sourcecred","discord","MESSAGE","700023168995295233","700397997707755530"],["sourcecred","discord","MESSAGE","700023168995295233","700398207733334077"],["sourcecred","discord","MESSAGE","700023168995295233","700398301412982965"],["sourcecred","discord","MESSAGE","700023168995295233","700398301727555604"],["sourcecred","discord","MESSAGE","700023168995295233","700399163313094746"],["sourcecred","discord","REACTION","695344752031432766","❤️","571023281382227978","695669843034243134"],["sourcecred","discord","REACTION","695344752031432766","👍","118260545211072517","696454968831508630"],["sourcecred","discord","REACTION","695344752031432766","👍","118260545211072517","696455224532926464"],["sourcecred","discord","REACTION","695344752031432766","👍","250086586450968576","699021694240686190"],["sourcecred","discord","REACTION","695344752031432766","👍","250086586450968576","699025335148216410"],["sourcecred","discord","REACTION","695344752031432766","👍","571023281382227978","695669843034243134"],["sourcecred","discord","REACTION","695344752031432766","👍","657069807505637397","699025335148216410"],["sourcecred","discord","REACTION","695344752031432766","👍","657069807505637397","699326575627206778"],["sourcecred","discord","REACTION","695344752031432766","💯","571023281382227978","696730540039995493"],["sourcecred","discord","REACTION","695344752031432766","💯","657069807505637397","698965418370400296"],["sourcecred","discord","REACTION","695344752031432766","🔥","250086586450968576","698969730580742174"],["sourcecred","discord","REACTION","695344752031432766","🔥","321092785921064961","698973708316049488"],["sourcecred","discord","REACTION","695344752031432766","🔥","571023281382227978","698921390845198426"],["sourcecred","discord","REACTION","696400331260821586","🔥","118260545211072517","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","250086586450968576","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","291388682710024192","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","291388682710024192","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","321092785921064961","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","440281764204642314","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","571023281382227978","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","571023281382227978","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","683892894767251489","698659683526901810"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","696427343220047872"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","696441890048049232"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","699123164340551691"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","700087985634541678"],["sourcecred","discord","REACTION","696420039141752863","🔥","321092785921064961","699560532046250034"],["sourcecred","discord","REACTION","696420039141752863","🔥","571023281382227978","699275497984622760"],["sourcecred","discord","REACTION","696420039141752863","🔥","571023281382227978","700064920104075394"],["sourcecred","discord","REACTION","696420197644632116","👍","537858848912834561","699284090607763506"],["sourcecred","discord","REACTION","698942081858666527","👍","250086586450968576","699822779670724650"],["sourcecred","discord","REACTION","700023168995295233","👍","657069807505637397","700040376085381152"],["sourcecred","discord","REACTION","700023168995295233","💯","321092785921064961","700040917926543422"],["sourcecred","discord","REACTION","700023168995295233","💯","657069807505637397","700040917926543422"],["sourcecred","discord","REACTION","700023168995295233","🔥","363774203960360961","700039441799970969"],["sourcecred","git","COMMIT","0097f202e6f5d2c003e2ce168d124909f19458d7"],["sourcecred","git","COMMIT","00ab6982140ebd949db7457512b233b7aa3afa1f"],["sourcecred","git","COMMIT","014093e17900e748bb8f82656443ec621bd8a658"],["sourcecred","git","COMMIT","02350169d0e77e280968a062a1e98a60a0d4c5d8"],["sourcecred","git","COMMIT","0245a4002a35c2adccfed1f68a675c30ba871ba5"],["sourcecred","git","COMMIT","02e3a39d76183975fa9a0671de0c7922274b6abc"],["sourcecred","git","COMMIT","02f4d3623ae4e89fa6232477d97fe32b27aae7c5"],["sourcecred","git","COMMIT","030e8ecc0d83eb09cc3ac614a607eb119aab7fa3"],["sourcecred","git","COMMIT","031a68eb5a45b70c806197b47783b1b4ae4332f0"],["sourcecred","git","COMMIT","0326166091410578eaf7c25d9f6736cd4533f9cd"],["sourcecred","git","COMMIT","03604a7d8f9a6f488f7990309e70066a1260483d"],["sourcecred","git","COMMIT","0388fb0219a7460e6726b34835c670986be5406c"],["sourcecred","git","COMMIT","03e1112bf4099083d81386043099e4876599d53d"],["sourcecred","git","COMMIT","0470e9f5c13a7c36b0934ca935365649872ad849"],["sourcecred","git","COMMIT","05c78a85d3b82074eb0e966c43eaf29f53e39426"],["sourcecred","git","COMMIT","06e6bf089f69a108cae63a413e3a3d0a6c0d40fa"],["sourcecred","git","COMMIT","0764e2b7701a6cd6076622bce90c3d3030e7d08a"],["sourcecred","git","COMMIT","07d5c9eafed794bfbde34705c0232dfdbb47bd9c"],["sourcecred","git","COMMIT","07e0e5f00e18e00a12892b47bd3f5b87418377d5"],["sourcecred","git","COMMIT","08aa4aa95a936798295f7d02cfa54c1441ae7aa3"],["sourcecred","git","COMMIT","0a23c189b1d776985b6759cfb65b75a5b0dbe388"],["sourcecred","git","COMMIT","0b351412cfa92c8edabea1449da16a7a2128c81f"],["sourcecred","git","COMMIT","0c32d96da86885a0d730f8398a23403372117d4b"],["sourcecred","git","COMMIT","0c44b7c5b7ac2243b2fa984a6abc9c91762a8a33"],["sourcecred","git","COMMIT","0cc15c54f0ac08b76b0b20231523123c68e787cc"],["sourcecred","git","COMMIT","0e468843191ad3a24ff5b803b2e388a12e88a289"],["sourcecred","git","COMMIT","0e6c46576a8feeb07054584458ebdec61fd886f3"],["sourcecred","git","COMMIT","0e9dbd8406b256f6b5e553d6769683a55909ab84"],["sourcecred","git","COMMIT","1041be12a4aee28587ede5b1a532c6595de78c70"],["sourcecred","git","COMMIT","11a45eb188a756e31f2ece0afcf10afb5e30112f"],["sourcecred","git","COMMIT","11fcd09a0cde08af08b5c5c951f54c150cf47ea1"],["sourcecred","git","COMMIT","120b10d34d5e804b21984569c113e37036efe669"],["sourcecred","git","COMMIT","1222e49b4269f15b2c71cfe4b62b1333abeea581"],["sourcecred","git","COMMIT","12cf0f16d406f14c2597abc130c4d2bfa9927f32"],["sourcecred","git","COMMIT","12ddd4e35607c0184b898c898e26e45c6017642d"],["sourcecred","git","COMMIT","12f5e68f287c17d2e7fbe424b996b269c74c0e8f"],["sourcecred","git","COMMIT","135b198b82d822d1d1a15b3683da0b76487c3e6d"],["sourcecred","git","COMMIT","13634414337e730fbcb403e2657a8007347ddd8d"],["sourcecred","git","COMMIT","13fc50d22e2353cf2bb38948cae4fb5fb591ce6c"],["sourcecred","git","COMMIT","1582ec34530ff6b7055382319336acc3f82de567"],["sourcecred","git","COMMIT","15a8127bc5402c7224bc592f890a5bd7f793c6a5"],["sourcecred","git","COMMIT","15e6db685e730aa55697d6fc8f60e9006732d2db"],["sourcecred","git","COMMIT","16309da6c786efe9dc1f745c61ad4f2c2ad61d76"],["sourcecred","git","COMMIT","16456a0e6dce09102122b50f42b185c330bb7b25"],["sourcecred","git","COMMIT","169704b1d09d4498ff0eaf2276bc40e79fffdf7e"],["sourcecred","git","COMMIT","1798e29eb0b6d8dd5e4f14ffcc2f25644e736762"],["sourcecred","git","COMMIT","17a658ce22542db61a1bae02316d8c0e082fa52f"],["sourcecred","git","COMMIT","17ec0dcf84726a4da739f0cbe36cd1908477e4cb"],["sourcecred","git","COMMIT","1823aa73078796ecf98dd56d9c134ccf2192e686"],["sourcecred","git","COMMIT","1834ed59b6a58195aef57af492f3122a94aac239"],["sourcecred","git","COMMIT","18c5aee0a819fd4f7877321af5fd04791f85c6f8"],["sourcecred","git","COMMIT","191e73e429ab193e59189f44b363d69613ee0315"],["sourcecred","git","COMMIT","1a16f1ec50e59e3baf9462677fa2c4f03ee2f9c8"],["sourcecred","git","COMMIT","1a21759b0bf3dbf3f524a23bf10c8e4a114def8c"],["sourcecred","git","COMMIT","1a3252694d719fb389bb10c0e24d727e61a3f8a3"],["sourcecred","git","COMMIT","1a7929462fc35448408f0d854a6c8c898c2db94f"],["sourcecred","git","COMMIT","1b5127e0416b329fc4dcd1d988d29489bea9016f"],["sourcecred","git","COMMIT","1cac15ecae5e636fd5d049fc5993ccd113126e41"],["sourcecred","git","COMMIT","1d8ee2b3aa6e25bcf60ec6e52bf5328c0866cdc5"],["sourcecred","git","COMMIT","1dc4a2c23525043a7b6e32a79837cb6a5a62fd97"],["sourcecred","git","COMMIT","1e08344d06d9089d381e91e2bee0c1adf3fe3b9d"],["sourcecred","git","COMMIT","1ea710efed95a3abd2613ee16b3aaea6110def50"],["sourcecred","git","COMMIT","1eea54a1361eb6aedba221f65f86205866b97322"],["sourcecred","git","COMMIT","1eed38c4cebd63ab6fc9537564a5304a870caa0c"],["sourcecred","git","COMMIT","1f350ead22cb503932ec36b9d21b735eb97eb256"],["sourcecred","git","COMMIT","2074791c680ee3d896c6c819ee0244719a7e510c"],["sourcecred","git","COMMIT","20796df7555b0c191dd575542000d50d98c034cc"],["sourcecred","git","COMMIT","21196b9342e552cc4fc6a9f213ea42768f3590d6"],["sourcecred","git","COMMIT","21df4319db26f8c3ed6eed74b2076026cad5c070"],["sourcecred","git","COMMIT","221754a5dbe3ebdf6a0fc5080de82669f5476b83"],["sourcecred","git","COMMIT","225168780b86a4b41d38845653c5d8759d1d37ad"],["sourcecred","git","COMMIT","22f57e7b323b0800c218b270980286c105ff7760"],["sourcecred","git","COMMIT","234d3b02b5491114f1257e23fcaf2bf880eee376"],["sourcecred","git","COMMIT","23d2d9d76214f6b6309676e2d369fe22f495943c"],["sourcecred","git","COMMIT","25c16bb85801279196018b44ec0db0834fadc4a2"],["sourcecred","git","COMMIT","26b69c05b19e8c57f2d16f77ab4d86b76247ce1b"],["sourcecred","git","COMMIT","275d163efdd812cdcd6ae2f5a8aff1bab3bed0e7"],["sourcecred","git","COMMIT","27b2bf3d7da83e04295aa1c2297e50ce8157f435"],["sourcecred","git","COMMIT","28b0e3f2d8fd42569eb803d10435aa8c0edf28f4"],["sourcecred","git","COMMIT","29d9a8ef0d738d8b1bdae873c892af41858cda0a"],["sourcecred","git","COMMIT","2a1204b44f44d6d93cf952e1804aef25ffbdd78f"],["sourcecred","git","COMMIT","2a6a498e1f06f55bc8d72380017b4d4060e27123"],["sourcecred","git","COMMIT","2aaae9c777eb4801ef65192afd1c7553ceb74012"],["sourcecred","git","COMMIT","2ac1a7e110486f19483abeff54c243335640c923"],["sourcecred","git","COMMIT","2b67c252af08687a1c02e924757e383977d4d4d7"],["sourcecred","git","COMMIT","2b6ed00bd26907f91649e266613daba56cbaa0ee"],["sourcecred","git","COMMIT","2b91470d79d6e707d2e8cb3a794ebe8c4d7b3484"],["sourcecred","git","COMMIT","2bd813f09f98fa3b26934f6ff7faaab6ea73f1e6"],["sourcecred","git","COMMIT","2c407f36d0c5b27d2c474b335cabb81cfe2edeca"],["sourcecred","git","COMMIT","2cee732bc11b712814855cfb1d9b5b279cef6fb9"],["sourcecred","git","COMMIT","2d290b2288a14d494f0fc18bfac882ef6c617e6a"],["sourcecred","git","COMMIT","2d44191a996951ccbed0009280899614d63174c9"],["sourcecred","git","COMMIT","2d9e5bd17dbe78235bca6bfd44b6a910d3c4a951"],["sourcecred","git","COMMIT","2e4d02b5022b744b43eba4a032fa855b765aa0ad"],["sourcecred","git","COMMIT","2f42a2a3916fe6ede97f1fac9adc1897fcbaa2be"],["sourcecred","git","COMMIT","2fad9aab6897201e6bc353b9746c03d1e728d433"],["sourcecred","git","COMMIT","30014c11841c9a605cc94d517ece6b867afd8cef"],["sourcecred","git","COMMIT","30758d04aa4da97fc0aced1fa22cbdee4a82c792"],["sourcecred","git","COMMIT","309a89586da5e2d44b48a607c9334aef6f6db3fb"],["sourcecred","git","COMMIT","30ab2ab8774f20e9541f08c657e6ec9ab08504f0"],["sourcecred","git","COMMIT","30d221dce50b378b1c7305bda09bea3f77887415"],["sourcecred","git","COMMIT","30ebf64342f800953d06f2b0ed888ac8d4495f69"],["sourcecred","git","COMMIT","311bf26aa5268a067b0bfc8708a922d2fd3d0a81"],["sourcecred","git","COMMIT","314f037efaaf34002934fac72ee5b8c34e633117"],["sourcecred","git","COMMIT","317ffa1471a0179007b87f93aac2223666443d45"],["sourcecred","git","COMMIT","325b973a78cbe14ff3f5e9766faee18e85d5a408"],["sourcecred","git","COMMIT","32d6fc725adb844ed330499482232f2876de58d1"],["sourcecred","git","COMMIT","32e087e76f7e1c5911790ed64508cfb59e448369"],["sourcecred","git","COMMIT","336edf6f3e0b661f947432cf39bbd9d26299f29d"],["sourcecred","git","COMMIT","34723961199565937493834071665b871a632d5d"],["sourcecred","git","COMMIT","35bf0829c068aa20de51466ea118f7547707de00"],["sourcecred","git","COMMIT","364068ec8db86b378d630f591da3a02de8708798"],["sourcecred","git","COMMIT","36d7098c5f0c400dddec1e654523a2800782b78a"],["sourcecred","git","COMMIT","36ed95ddf8349ba3d557bfbbef066b2559b432a3"],["sourcecred","git","COMMIT","37b357cb88cf608d20589ce6ee51404561bb4b1c"],["sourcecred","git","COMMIT","37e3b7251566699d4341b3bdbb81ec8f554f7d87"],["sourcecred","git","COMMIT","380e74d47b6bfd2c48d5690093ab03e44b92d991"],["sourcecred","git","COMMIT","38f3240786ceec5b4c03d7a5ce0faa02512a8cde"],["sourcecred","git","COMMIT","391b32bfdb5ae37d2ce42d32319fbadde72663f3"],["sourcecred","git","COMMIT","392e601d3179506dfe7ec0ad20cd5f679696e66e"],["sourcecred","git","COMMIT","396e5f791be1c3cf258b08afc6111cea8a409634"],["sourcecred","git","COMMIT","39ac367cc0a3e55366f190fe158a8517f97c2778"],["sourcecred","git","COMMIT","39b0a902c1c17512a536380503a506fc3ca615bb"],["sourcecred","git","COMMIT","39c6daaa5fca6305b908cdd28811107eba6bcbe3"],["sourcecred","git","COMMIT","39dae46151fcde41ea0b062ae95fde4109142e5b"],["sourcecred","git","COMMIT","3a5b33363a28c7bf7bc62329095b08110996d659"],["sourcecred","git","COMMIT","3a649e81c448757920b8c8bdcf8fc392f84d3580"],["sourcecred","git","COMMIT","3ab888c62c6fa64080e675c1f5146e156635ee6c"],["sourcecred","git","COMMIT","3b4871c09b67498e31575b8aaa9c09443d142a03"],["sourcecred","git","COMMIT","3b5a4715a9790e23a2e35d783d691e8d5ee58f80"],["sourcecred","git","COMMIT","3b8e4f54845388851293b26053f4df65b4dc98d1"],["sourcecred","git","COMMIT","3bc9934834b8a65291439cbba2daf061448e30fe"],["sourcecred","git","COMMIT","3c52923940969e0594c9693d27e80bf81e49bdfb"],["sourcecred","git","COMMIT","3c716ca39a305e5d8a9b2a5aa466039466d05a38"],["sourcecred","git","COMMIT","3d84fcf16de8bdd78f1098650394a66a29709a40"],["sourcecred","git","COMMIT","3ddfb88738e47c20cf9ea58c2efd792aee1b6129"],["sourcecred","git","COMMIT","3e3760007c9d0a9471f5f0d429ac4c30b1fb54f6"],["sourcecred","git","COMMIT","3e5e14457fa143425d264a4fa941591d19730ce3"],["sourcecred","git","COMMIT","3e76da91166b4e618c16fcf03a91656654793ed9"],["sourcecred","git","COMMIT","3f47f07723b97f0311f32b78da99358d2c6affb4"],["sourcecred","git","COMMIT","40036a386b07c41b89e594736dadb6134cf182de"],["sourcecred","git","COMMIT","4003769a8d62ca41d0d18d2bd72204b1d278d5b9"],["sourcecred","git","COMMIT","407f5d0adffd9ef41bff0bdbfb06f67213accea9"],["sourcecred","git","COMMIT","419d39d87eb31965a8f5775075cb80be6a57abd6"],["sourcecred","git","COMMIT","41e67273af614a1014bfb58bf6ca1b1cee1e6a8a"],["sourcecred","git","COMMIT","432042f6f965bb113ad50950cfdbb82c44f0dc59"],["sourcecred","git","COMMIT","436819fc13564c1c553d1d70390daff05a9052e9"],["sourcecred","git","COMMIT","4474d1b88abf39aa94df664898e4832fc05e52cc"],["sourcecred","git","COMMIT","44772353f8d950226d909b12778cbed4df3ed866"],["sourcecred","git","COMMIT","44c844475c5e2beb5acdefc7e4cd54e90d2d84e2"],["sourcecred","git","COMMIT","44cf0fbba18bf392a44962faed1e1300ed6fa459"],["sourcecred","git","COMMIT","44ea41a64de0f121ff05a4c07c6bb51e35eb5035"],["sourcecred","git","COMMIT","45d3445cd814d4666f19f4b1b480984f1c0381eb"],["sourcecred","git","COMMIT","45f25ea4eb646427c06e58b7e4ce2c4cd385c329"],["sourcecred","git","COMMIT","46377a96ccd136b5401df0ed5032a105a385dd49"],["sourcecred","git","COMMIT","4639ec8dba12e8c7d3b0bf589b8c8a09c522ae47"],["sourcecred","git","COMMIT","47d595cee7fd82afdb8666263baa96555bec7b30"],["sourcecred","git","COMMIT","48e5b4467c6107040c107d55bc2fbe07a57ea3a0"],["sourcecred","git","COMMIT","49af56b16491699e672947ed52ce86dcb3f9d9c2"],["sourcecred","git","COMMIT","4a623fbc3735c9a32d10199880214cc79caa4004"],["sourcecred","git","COMMIT","4a90734832ae4ad328fc062712e2deca88d7dcc4"],["sourcecred","git","COMMIT","4acea81dd65135e7afd23cd4c5484dae44bcb324"],["sourcecred","git","COMMIT","4b4c9ea9705465d39f33b39ea39819c9c77aa78b"],["sourcecred","git","COMMIT","4b792e8ce9c473dd059f633bec6659a18a6d8ff7"],["sourcecred","git","COMMIT","4c0f6c1fe42e875f8cd6a4be4fa88be63052d149"],["sourcecred","git","COMMIT","4dc6dc24deb0f914eabc017a1e488a4d62f1a893"],["sourcecred","git","COMMIT","4ec6bdc6a120e123052ebf690ddf6f32b9c35722"],["sourcecred","git","COMMIT","4ecd9028dbcbb9fbf51a22a30fc7af21bde61d33"],["sourcecred","git","COMMIT","5023eee71c9c3f2f16de1b22e9f37fda26c2f023"],["sourcecred","git","COMMIT","509d8c03b1a67129a3e98073dd24f93723cdfe41"],["sourcecred","git","COMMIT","50d289eff07e8033e20cd60a4670c798dea24b71"],["sourcecred","git","COMMIT","51308621ec2843350852fd31f8c0aa08d6d6a809"],["sourcecred","git","COMMIT","51c24fd07be9e40f534f48d43f936d829ac7b085"],["sourcecred","git","COMMIT","52c6264dbafc69c14a2381a41075ca4fbb020653"],["sourcecred","git","COMMIT","53b6f1b980b797f92d59fc4912b2fe6e999f774a"],["sourcecred","git","COMMIT","53d9b62862d0e8ef597dbffcbd0da8bcd12100cc"],["sourcecred","git","COMMIT","54090419b371cac747ca19327d54c4cddb375f05"],["sourcecred","git","COMMIT","554a82bc05cb713e92e8b3523b521078daf829f0"],["sourcecred","git","COMMIT","554c96438fdbee2031b8b5ac16aa2d6db6a7f40f"],["sourcecred","git","COMMIT","56172b6087400fa81c13f39f37b23ec11de3c9b2"],["sourcecred","git","COMMIT","56e1450abd29457d3aefbdaef3e38562727b7628"],["sourcecred","git","COMMIT","576bc68e63d6232f6c78bdd38e66da8585c04b0c"],["sourcecred","git","COMMIT","578544d0557614c00780089fa9f8343950f977fc"],["sourcecred","git","COMMIT","59aa572835669dee12a533857e417b17ba7b45e5"],["sourcecred","git","COMMIT","5a3bda08dd0c3b937345c449229b07241d70fb09"],["sourcecred","git","COMMIT","5ae6db74ec638222cb60957c3105e15de7f84457"],["sourcecred","git","COMMIT","5afb4e08170c1bd2e9f5fb4dd42c6ef5e2d23878"],["sourcecred","git","COMMIT","5b85a7405489f720ed0b9cb5150c2619d45c9e9d"],["sourcecred","git","COMMIT","5c621ee4c644713a2627afbfed745482fe5525ef"],["sourcecred","git","COMMIT","5c8e695ad340e65e85862dc8202d17e73d95bc3e"],["sourcecred","git","COMMIT","5d168f1298b62e831159fc316e394491b8386aa8"],["sourcecred","git","COMMIT","5dd05e3605e9940f65f2059e8c4286077a6439db"],["sourcecred","git","COMMIT","5e5171d6fb098184d18a44589e6cd4fd72c89c80"],["sourcecred","git","COMMIT","5e8fc8eb37bcd473ee4acb90c32d8e7a8f6a77c7"],["sourcecred","git","COMMIT","5f689010f6e0a438513b7e44ef37ae12d59ddf91"],["sourcecred","git","COMMIT","5f858e9e9b52236fc3a085b38b1c7c5623dc814e"],["sourcecred","git","COMMIT","5fc99f0926a38140bc41ab5322e28e43f5b50969"],["sourcecred","git","COMMIT","603c5f7b7e2afb54619ebe705b969a1acb102bf6"],["sourcecred","git","COMMIT","6044da77d77cd5f0bf782fd47faf7813cb9a00d7"],["sourcecred","git","COMMIT","604ba8761cdddc84bfa66485fe367495e5c8a65a"],["sourcecred","git","COMMIT","60df4a2278ec3dd51317900064eb3061be31c3b7"],["sourcecred","git","COMMIT","60eb231938e7ad390175a13b46cf1161e23e915c"],["sourcecred","git","COMMIT","61741f2ee4388880504f3a299dbd9c11698cc7dd"],["sourcecred","git","COMMIT","62452c343ffd843e938714bc2e87d5214d7dd315"],["sourcecred","git","COMMIT","62d47242332f4e1d86f7d7ae460f6dc998344aa2"],["sourcecred","git","COMMIT","636ec6a16064c8c33eb4763375d53ac5d8bd1a10"],["sourcecred","git","COMMIT","6414f44dff41af4a83f6ce0de71d809bd0482d00"],["sourcecred","git","COMMIT","65524097ed5de3a815e989bd420e38177fe70bca"],["sourcecred","git","COMMIT","65d2ca343c51020478094ba87b5db4af6464741a"],["sourcecred","git","COMMIT","66f27020fa0bd12851a0de1b206abec8c0b5e55d"],["sourcecred","git","COMMIT","67380485711017726e26a1687668d3d85b0e5d41"],["sourcecred","git","COMMIT","67b58587f295e53b396fed2b68ab34032fd86420"],["sourcecred","git","COMMIT","67d46229489309035b968391e6d14611ebd5c3ff"],["sourcecred","git","COMMIT","68038d157338b257f25c21b69def40c3eed1e43e"],["sourcecred","git","COMMIT","680e6502d527be2ddbd2bd73be5ddce9c5914e9b"],["sourcecred","git","COMMIT","69d1fb79b9680f7ec5e8554f2a8c0f81d74d9a9c"],["sourcecred","git","COMMIT","6a8bfca0c936f304cc9a2a3399676be46aea9960"],["sourcecred","git","COMMIT","6b96998e7c2f8ce52dc09ebc9ea524d07debe38e"],["sourcecred","git","COMMIT","6bc1161d99c436a23c35f5477862677701ef72e7"],["sourcecred","git","COMMIT","6caa3ed4ed86f8414354719138e0121db2d6a0dc"],["sourcecred","git","COMMIT","6cf92566dda9fff26663c6dfe2e3ae277ae0d908"],["sourcecred","git","COMMIT","6d3765a6c17e93aaddcd0f3fb8ace45c20bda183"],["sourcecred","git","COMMIT","6d51ee836e10e9d7b38006f5e496655ae18ad368"],["sourcecred","git","COMMIT","6e7bfcd7b00408f64472201ac06ea499e02e6fad"],["sourcecred","git","COMMIT","6f1a3968daa1e3d2bd607f81a599ac5ebf73f717"],["sourcecred","git","COMMIT","6f4ff7a024df84c214317b9c950d77f3ae3c4f57"],["sourcecred","git","COMMIT","6f93833ab9fbe162b81bb768df2d85c30ad06ab8"],["sourcecred","git","COMMIT","6fb58d2bcb10efa1a1836b0bf3357ae6bc33955b"],["sourcecred","git","COMMIT","713acbd4593a7a10b0544aaab7fc4ac05a66f9ae"],["sourcecred","git","COMMIT","71e08464a654b37b05fe5349649a03f457933fa1"],["sourcecred","git","COMMIT","73505c34a1b46a3dfcaca4d9c3aa116fdf51e0db"],["sourcecred","git","COMMIT","73dbfea00d269ff953ee50c034f1c6939743a5de"],["sourcecred","git","COMMIT","749f1e4c55deee2c1b640348b5965f5a4afd2886"],["sourcecred","git","COMMIT","753c27ee7d264f00c566fe6f56722528f1028704"],["sourcecred","git","COMMIT","7544c9c062ca14c025caa6d2d859e346287f5e06"],["sourcecred","git","COMMIT","758f9ebb14e2687de4f888bc94f872a610174a9f"],["sourcecred","git","COMMIT","75ebd0228f654f094c750b9885c5fe5aceb72486"],["sourcecred","git","COMMIT","777514f100a7dc7df22a9a3f2c57f6516e8efc44"],["sourcecred","git","COMMIT","78601376522c329c0940754020ff4654ffe937b8"],["sourcecred","git","COMMIT","78714ca856356791aae2576d01eb1c27fc7e4c3f"],["sourcecred","git","COMMIT","7931cf20b5146bca68e51d26cdebade9a1d3a662"],["sourcecred","git","COMMIT","7a3226b449f5a2bb9e1d0528959c3aca8ce18f8f"],["sourcecred","git","COMMIT","7a991963a5c8fc8dba4ab6a0c1e39421eeec45d6"],["sourcecred","git","COMMIT","7ad5a2af6206fa2c6d894364d1f7f40b55f08149"],["sourcecred","git","COMMIT","7b20ff37a9650a134c6f55fffd04fbdd5df83b43"],["sourcecred","git","COMMIT","7b6d61687e57d15a45d195b1edb567451a30db29"],["sourcecred","git","COMMIT","7b9dca52443325803e66cf596d274a0b11d252eb"],["sourcecred","git","COMMIT","7bdeb692b04c1a855be5d7dda172d87caafa3f1b"],["sourcecred","git","COMMIT","7cd874acd8a0f9009911452d1c0b363cb13f6669"],["sourcecred","git","COMMIT","7d1f6e2d13ab467719f287802b16e799deeb5e26"],["sourcecred","git","COMMIT","7d4bf5aecee8daf8516f468e96e15c6b4d0efbcf"],["sourcecred","git","COMMIT","7dc4514cd415cc926827fe02cb2891b8d6b80e5d"],["sourcecred","git","COMMIT","7dd45c9416c703d549b6e278b7bfbe75053b1ca0"],["sourcecred","git","COMMIT","7e0a5d65716af527389ac6bb38d14950d482e415"],["sourcecred","git","COMMIT","7ea5916ad6f9de9841f277901506ab72a39bf157"],["sourcecred","git","COMMIT","7fadabe4bad18a2e7326b241c874d5efbeb6a691"],["sourcecred","git","COMMIT","7ff7782489b7894149cc5f211d9ddafcf84918e9"],["sourcecred","git","COMMIT","80773639d8e225d1902d6145312108ecaa906a15"],["sourcecred","git","COMMIT","810abfb03976accd663d1b7b964bbc19a92ec609"],["sourcecred","git","COMMIT","817cf8940cb88ba790c6021ce54bcb018aa0ceb6"],["sourcecred","git","COMMIT","81a67f48120449294d3ab94cc767755e0bf3784e"],["sourcecred","git","COMMIT","8275d1b5f3a774264d5833c23d8958342940092f"],["sourcecred","git","COMMIT","842296b74203dbd599856a16880adcc904bd5b01"],["sourcecred","git","COMMIT","85b6e8cca2d6bc5709449605c8ac645fe74f78d5"],["sourcecred","git","COMMIT","85eeea117f1160d5b9da37473b35598a7c76b5f2"],["sourcecred","git","COMMIT","8619ee2452e7bf109169017acc968bba3e6e129d"],["sourcecred","git","COMMIT","862fd7fa57bf683b777fc8f3789b1df4aea08e9f"],["sourcecred","git","COMMIT","877be03e547648fb7a06110788e7dad226a05559"],["sourcecred","git","COMMIT","8849eeb9b3a0677fcc53c34ec1675a0e27cf0074"],["sourcecred","git","COMMIT","892f2bf564a1dbbc4215f2ee677ac9fc2aa763e3"],["sourcecred","git","COMMIT","89a15b5772d1dc21737181d7dda26695a0dfecca"],["sourcecred","git","COMMIT","89b337bef296df10a94c3b38ce1e2ef4396886d5"],["sourcecred","git","COMMIT","89ed10ec9153e166a0b7275c73003fc6fd86e76e"],["sourcecred","git","COMMIT","89f7cc8cbfd2fe93bcdb22e979f918a288bd8668"],["sourcecred","git","COMMIT","8a584e4b4f9c8a1111bf383d3a7a72ca3f8ee5b9"],["sourcecred","git","COMMIT","8b3379b6dedd5d8ad5970d14cdd6c507909d3fcf"],["sourcecred","git","COMMIT","8b44ea06f42e6a25fc0e87bfd38c28786001969a"],["sourcecred","git","COMMIT","8c62624a48c8a907f8b30e548abdc4e3764fb0df"],["sourcecred","git","COMMIT","8c797532d4140aa6ce0d5514cc6ca749ec6223e3"],["sourcecred","git","COMMIT","8ce123a903f0035d55349e86f54eb04838bb739f"],["sourcecred","git","COMMIT","8d960f0415e8ce8a45d7005c4ee399de672144d4"],["sourcecred","git","COMMIT","8da32bb2436219e3a55631e426a71d3d45d27c36"],["sourcecred","git","COMMIT","8dfd165458a81f0c67969620d6ab006b7e24aef0"],["sourcecred","git","COMMIT","8e04719f8d88512b8e8e19e17e42f7d960f6733b"],["sourcecred","git","COMMIT","8e13f39d1372b422a914857f324ee60abd2c795a"],["sourcecred","git","COMMIT","8e50a18b163cc513402b9c6c320672c83c46db84"],["sourcecred","git","COMMIT","8e56a3f94f680b5419df0fbfba1e9c985a495345"],["sourcecred","git","COMMIT","8e62a063ca7e54dc299eb6cabbf877a663b94c8f"],["sourcecred","git","COMMIT","8e80b8ff5bbc8123e57ac728fc9efcd1cd2d038b"],["sourcecred","git","COMMIT","8fe6cb1f84b56fff85a3bd87661712256a6806ab"],["sourcecred","git","COMMIT","90694dc47c350631227c33418a773a70137d5877"],["sourcecred","git","COMMIT","912ad7ced1c783afb97c7d9a66f7c3f5e2799312"],["sourcecred","git","COMMIT","9227670ae651f3da852b6ec3555aa15713ecce86"],["sourcecred","git","COMMIT","93373ccc6bf6185127f6b17ad5626cc110fe5e08"],["sourcecred","git","COMMIT","936cd22fe159bfd7f8bed539783f52c768f20a9f"],["sourcecred","git","COMMIT","937417e50fd087e175a28471de2176cb56ec7003"],["sourcecred","git","COMMIT","94e51d9a83cd67b4ad82c6529212e72aac84afe7"],["sourcecred","git","COMMIT","95d5884b12a5a5f1d18552277e37597fb6048297"],["sourcecred","git","COMMIT","9620fb8b0386160e364e38d63ad3fede4a182ce3"],["sourcecred","git","COMMIT","96d370369c4d00c35acbdbc499fed536101b6601"],["sourcecred","git","COMMIT","971440a0ff594fb02bef0ed3320e9371e17bc2c3"],["sourcecred","git","COMMIT","97158bddc34b68675ca0d7376d36259a03aef6ac"],["sourcecred","git","COMMIT","978f052b63aa209ed8107dad71c59a44643e74ba"],["sourcecred","git","COMMIT","982a89df2b5282578a7593eea49511ae803ee10b"],["sourcecred","git","COMMIT","98f76c4fa934a3e08dc4abb8c19697c7ed1da81c"],["sourcecred","git","COMMIT","9a5b489e1bbcc306ce4c6362aa5aadff60e6a27f"],["sourcecred","git","COMMIT","9a866424f84b469783dfe559a510ffc93e00d64b"],["sourcecred","git","COMMIT","9aa0ecd6f537c0f3d5f6f200c7c5448ddc28c9dd"],["sourcecred","git","COMMIT","9adcfac02e9dc6203f733946b48815c16c4bda6a"],["sourcecred","git","COMMIT","9b553ff5e3ec727ed0dd45321971a9911a1f04ad"],["sourcecred","git","COMMIT","9d0cacf29ee5f6668426c0dd9cca12ad7af906aa"],["sourcecred","git","COMMIT","9d8560f7a170cc2c0937ba7980dbcb466ad3140f"],["sourcecred","git","COMMIT","9ee6d1b3b0d7b06c3abeb7b496e830683c54f6d4"],["sourcecred","git","COMMIT","9fc6edf1983584d9e8336ae9cba525ba92e3249b"],["sourcecred","git","COMMIT","9fdf4415ba620e87f0c8182df47265aa34f5f8fd"],["sourcecred","git","COMMIT","a04b1795da49cbc6e5f795f3b6c6cc424e1b9d19"],["sourcecred","git","COMMIT","a04cff65d72e1b96813ce58a0122a50378ac496d"],["sourcecred","git","COMMIT","a04fe98b80805bd1b2eafab803bc54c45c360418"],["sourcecred","git","COMMIT","a0931cbed5f9f91298af9d27a02d69468722488b"],["sourcecred","git","COMMIT","a0ebe6c6c881f02ae127c92abd3795e597009031"],["sourcecred","git","COMMIT","a0fb9b822baab9e0fce8433be3de7d423e1b4dd6"],["sourcecred","git","COMMIT","a11f8d670ef711b410415b8444330781522c3273"],["sourcecred","git","COMMIT","a180ef16d0fb9e6adbb95731fcdd0e84955805d3"],["sourcecred","git","COMMIT","a2421f56156e52f5b7138ff17678e3c13e13a2f1"],["sourcecred","git","COMMIT","a2547eb7d1835e050a897172b563ccb69b769711"],["sourcecred","git","COMMIT","a2fd7e076795c62a07501d5fb71c03999cc4b145"],["sourcecred","git","COMMIT","a356fe37b3ee2256d529a625a42d890962870096"],["sourcecred","git","COMMIT","a37a48256d99a63fcf0a678ebbb34cca0fd95f23"],["sourcecred","git","COMMIT","a380b67f78535ff8cd03945a60f98400e084a525"],["sourcecred","git","COMMIT","a39a9e3d229c78b1d5215a8c6faf435a23b996ab"],["sourcecred","git","COMMIT","a3a0462dc68b9d35f30abd2ce16199a9450383f4"],["sourcecred","git","COMMIT","a433d846e9ff70c98dba741fbfff7fa1985a67fb"],["sourcecred","git","COMMIT","a462920043f7ded252ca746cf21c6a3dfe91325b"],["sourcecred","git","COMMIT","a501a7454bf19ee03003196bfec9560d48c978d2"],["sourcecred","git","COMMIT","a52d2478c6e23704685c324883891a25f261069f"],["sourcecred","git","COMMIT","a631821f95e1a3b679073cd25647784f863699ec"],["sourcecred","git","COMMIT","a6853a839b1101b077e3b80c3106da01be2807ea"],["sourcecred","git","COMMIT","a6e243fcbfe540b52551bbb50c542ad07ee92e39"],["sourcecred","git","COMMIT","a794a7d8a4034af56c031a5a4a85300ad488871e"],["sourcecred","git","COMMIT","a7c425d5f9edb1106b5934cafe4cbfc221a08e9c"],["sourcecred","git","COMMIT","a7ea71e19d10841f56da13b7bd52ec3b0b2a9469"],["sourcecred","git","COMMIT","a7eb7abbb97a3acb715b06da2a906cd6646b56bc"],["sourcecred","git","COMMIT","a802f7c669324c951f6554fcf391f886ba3150f8"],["sourcecred","git","COMMIT","a8419d96792a217c1bb9462dfa71c8c738a87a16"],["sourcecred","git","COMMIT","a86004ae7a81b6150ca9decebdd05ab7d4151214"],["sourcecred","git","COMMIT","a999d6bd35df198bab6252404325d7a944983410"],["sourcecred","git","COMMIT","aa9b13f64574bcf35312c9c6e828986ce75aff16"],["sourcecred","git","COMMIT","ab8fbf7d53b4152b4ec97c983405cc703df3a2bd"],["sourcecred","git","COMMIT","ace3d821833c0157e8e3f74c06951fe79cbb49e7"],["sourcecred","git","COMMIT","ace98dcfcfaeffae7c2fc2618af5281d06129330"],["sourcecred","git","COMMIT","ad563e12ffae5d7b53764f2709b2da47a17aa18c"],["sourcecred","git","COMMIT","ae656a1a99e9a8cc227c187154123571d9d16872"],["sourcecred","git","COMMIT","af3fc40b0b4f010f4236391bc245bab5c3fc5343"],["sourcecred","git","COMMIT","af6293708734a500d9aeb65ece80c20d28d973d3"],["sourcecred","git","COMMIT","af89e8d6be326c34865a925f1be4c67877064e30"],["sourcecred","git","COMMIT","b038f1ca9f9b6a5a54935c1a730d2e32f8220ce7"],["sourcecred","git","COMMIT","b06798edf2d6f86723961bdd7a387dda3eadcb00"],["sourcecred","git","COMMIT","b1e24185c567c4f9a60959559e6ff1ac7dbb6279"],["sourcecred","git","COMMIT","b28ca121bfda152ce8bacc325aa7a31f9a3edb1e"],["sourcecred","git","COMMIT","b2ec0646a7533828b003a7cc525ac0ec48c5d9a0"],["sourcecred","git","COMMIT","b34492813251b626e0ef02911d7a0fe28aaa2b0f"],["sourcecred","git","COMMIT","b3a4034f04332a6546a7d03ee781f10dbf9e32f3"],["sourcecred","git","COMMIT","b3bfd8136d25f8aacc2b9267a3700f36f366792e"],["sourcecred","git","COMMIT","b3e0e30623418aaf8af913aed3c78c36e5e7c742"],["sourcecred","git","COMMIT","b3f667c746d54fd1e7ef41d4e91186ff705cb01a"],["sourcecred","git","COMMIT","b3f72b5f3ed774a1891f2da1a3c1b60af9272d84"],["sourcecred","git","COMMIT","b4394213300ff4d72ebaca7c63cf919df306ead3"],["sourcecred","git","COMMIT","b48eec0b0acb2c42b9307e89f0c50fcd2b5e3fe9"],["sourcecred","git","COMMIT","b4e879fb7c6c79a659dacc784a3e2165411d7531"],["sourcecred","git","COMMIT","b55a7a196b8f85817e8548bf7b9afba1341131e2"],["sourcecred","git","COMMIT","b5820a49d275ad3e2441dc49ba0e9c932e7e01ed"],["sourcecred","git","COMMIT","b5ad5eea401b4f415b9da446187b893a7ceee1b5"],["sourcecred","git","COMMIT","b5df3c8cd85cbe43606f2052f00631dbfcca42d9"],["sourcecred","git","COMMIT","b5e53ece75d30f3d379adb3a07c8cf652434e773"],["sourcecred","git","COMMIT","b6388db5eb6a6fed56eba661db2b761ccddfd6fc"],["sourcecred","git","COMMIT","b670574bd2bcf1e0a71c36b9447b0d5ffe22b9aa"],["sourcecred","git","COMMIT","b6920f3b6646522b3fc0f93e6343506b485c158b"],["sourcecred","git","COMMIT","b6968e47899cfc22652e1f1dbb3b82ed98cc5232"],["sourcecred","git","COMMIT","b72e98f338ce136d49bbc775464fbe071df8c431"],["sourcecred","git","COMMIT","b8100f78f6295a440d2e6a9e95a9099504c53374"],["sourcecred","git","COMMIT","b8319d3616c7d5e6c2af8087ea63e9fab1a73c02"],["sourcecred","git","COMMIT","b842ed3eaf687513a0d90eafdfb0a9ec6fc5882e"],["sourcecred","git","COMMIT","b85906087b6422297975a655808e1ddf998fdc8c"],["sourcecred","git","COMMIT","b85c0b5ab98357c6dc3af69297e6a795851c89f4"],["sourcecred","git","COMMIT","b8c4dd20fe0e1d3e66edf0ecada1d03544106dbc"],["sourcecred","git","COMMIT","b8c9da4bcc0d1a50add9423473a6c162cdb99597"],["sourcecred","git","COMMIT","b9309e4d44289af8341f43103b7be195df5998b0"],["sourcecred","git","COMMIT","ba08f21f38fef25e65a006e4af00591f623cba88"],["sourcecred","git","COMMIT","ba693f5f116cf19d9a8bf1bf55a4ec8c6c1929b8"],["sourcecred","git","COMMIT","bab488e0531a826777829e70c4cf8f620202e881"],["sourcecred","git","COMMIT","bb4c80608db52c03a33b09edbf8fdbffc666c664"],["sourcecred","git","COMMIT","bb9844bd3a996039c00d44054f3450fcdc905d22"],["sourcecred","git","COMMIT","bbc54e4947190da8c37d767e004339b62fb34aac"],["sourcecred","git","COMMIT","bbca4d024098c749b7064b70c24c416061255c75"],["sourcecred","git","COMMIT","bc959b6cd0e80d193876a8edb8ff0f18142ba558"],["sourcecred","git","COMMIT","bcc0d1e18f56c0ee098c7a1316afa5252c5d3392"],["sourcecred","git","COMMIT","bd29ad9bca1ac4c5f098c091bce6ea0824776115"],["sourcecred","git","COMMIT","bdb4c8a38c86a4598b2da69391fc84939148d738"],["sourcecred","git","COMMIT","bdd1d95095fc99186754502c96c1ecbff216fb14"],["sourcecred","git","COMMIT","be503991de7a3225cfc2888ab833abfccdb1d309"],["sourcecred","git","COMMIT","be5b93ae59bf65b698f6ed6301d28218c8170e91"],["sourcecred","git","COMMIT","bfb1be19201eedf6f5556b76fb3cba77b694c535"],["sourcecred","git","COMMIT","bfd321a5c384dc7fab99062bcc3491705303a176"],["sourcecred","git","COMMIT","c00a25ed5500c60da5520e12c68db9dc1e003cd1"],["sourcecred","git","COMMIT","c04c305dff31a60a5ea91270b07b5b46c4b734c3"],["sourcecred","git","COMMIT","c0622fcf93369e37f99e4809cea077710b9677d9"],["sourcecred","git","COMMIT","c09ce59f6cb00f62380a8dca641fbd016f0d70a5"],["sourcecred","git","COMMIT","c0f32243cff400f34b36897db4e64d3ae2cec253"],["sourcecred","git","COMMIT","c191e57f44662bcb753ec4c08a25545b0d25e284"],["sourcecred","git","COMMIT","c264cfe1bc96c758079bffcd728f497d0d7c0117"],["sourcecred","git","COMMIT","c2bf0a118855a87f962a7bda788c73120c64940b"],["sourcecred","git","COMMIT","c34bc9c573eacc008ca98653ddd2661f823ff9b2"],["sourcecred","git","COMMIT","c37818dc54db302c1bb2bfe99312084cb6452263"],["sourcecred","git","COMMIT","c3d50445a0194dac7d52baaaa8aa3dbf2bd77173"],["sourcecred","git","COMMIT","c461bb40366be6124cc8e09af25741c5e65b1a6a"],["sourcecred","git","COMMIT","c46d5eb8179fd34a5732394f59d40cf6e3b5a4e3"],["sourcecred","git","COMMIT","c4ae2b95edd223a2b3269f4913c5a237e7557194"],["sourcecred","git","COMMIT","c4fa771d6e61d74c5f1e702dd238ebbb4b538be8"],["sourcecred","git","COMMIT","c515036f8ba1937cda94092e87b0a13545d86829"],["sourcecred","git","COMMIT","c519a0916f23866c99c0c76bad33dec09c4a1052"],["sourcecred","git","COMMIT","c5c9f44334709db3c28eb81f1ee928a3823ae003"],["sourcecred","git","COMMIT","c5eeac948569a06622740d0b9340c622ddb469d3"],["sourcecred","git","COMMIT","c61bc79183374e7e37a8456ff47f662a2bc21baf"],["sourcecred","git","COMMIT","c676d5b790126e2af137ca1c53c8048db443a88a"],["sourcecred","git","COMMIT","c7acef8a5664d3dd57059e8cc447c4f1dbe269db"],["sourcecred","git","COMMIT","c85244688604991c9ee1ae17a7bf62373a004fd1"],["sourcecred","git","COMMIT","c85e7ad86fb08653971ed365f4f316d4577178ed"],["sourcecred","git","COMMIT","c8d413c01f9aa1c9d272f96283367268ff49103f"],["sourcecred","git","COMMIT","ca41c379a44e4ccadb2b56c359ff2ece8aa5b5de"],["sourcecred","git","COMMIT","cba7b7417f1aa04b9137d0eb1d2b41cfc1b84f9b"],["sourcecred","git","COMMIT","cc4e4ff94b2fe78d8727963b42bc1c33bfd2e932"],["sourcecred","git","COMMIT","ccde11b4e85afd9685dc9f58165148861adbe59e"],["sourcecred","git","COMMIT","cda86c72f131bd0ba804c57d20be41d8f017cf3d"],["sourcecred","git","COMMIT","cee0c69332f9f5481d0ae7f1dcf1a8f92f346877"],["sourcecred","git","COMMIT","cf359f56a9e7d9e380a729fe64f0fd9e06853c21"],["sourcecred","git","COMMIT","cf41636379acd5fb9e27af62727fdf64a111d959"],["sourcecred","git","COMMIT","d01e1a1762cde70b0fb49e82ec5432de6d691fb3"],["sourcecred","git","COMMIT","d0cc40b28ca9129e733107d99730dfbcd9449273"],["sourcecred","git","COMMIT","d13028772ab946a65da8787a255248337864a5ba"],["sourcecred","git","COMMIT","d1a721f8eed2805dd0c85d8d9fef06032f04c056"],["sourcecred","git","COMMIT","d210d6f387860b4736193624125ec5e1b8f5c88a"],["sourcecred","git","COMMIT","d219bd2f62a0ec8ac06b82daf83499442e3cb173"],["sourcecred","git","COMMIT","d265f3f3a462805b6c27dc7507b15be038730a06"],["sourcecred","git","COMMIT","d383b8fd2e6815eb8a5099785a7ef5c4393e531e"],["sourcecred","git","COMMIT","d44bc4f2e2256f0ebe1af485b047d9567583ed85"],["sourcecred","git","COMMIT","d4555554d347b2385ac96a530f5628491c2c724c"],["sourcecred","git","COMMIT","d45cdeaaabc568712db4fd59c157084fc4819e19"],["sourcecred","git","COMMIT","d49ea3b27586437f262b74132224b280597e67bd"],["sourcecred","git","COMMIT","d56ad45d57b3ca44c6702f66dbcf349dd39a9116"],["sourcecred","git","COMMIT","d593b126af5ccde32fe610fbc399f9233c4fcdcf"],["sourcecred","git","COMMIT","d601ad079de95e29fe5bd99dd225621e193b09a8"],["sourcecred","git","COMMIT","d63265d1ec1ac6d5e5d661fc137bef3bc4752020"],["sourcecred","git","COMMIT","d6bcaf0ed530067e11be1321280fc83f3a289be2"],["sourcecred","git","COMMIT","d7e5763c37582067d930e53718273eef67997db7"],["sourcecred","git","COMMIT","d8034c1a997a6f3762eb64abefd3983ca5c17b27"],["sourcecred","git","COMMIT","d8288bb356551f8609c84a09886c19fb4fd673b4"],["sourcecred","git","COMMIT","d83736f0f5cc5c3fc415146a5ad80145b3a565a7"],["sourcecred","git","COMMIT","d8f4083966d599198ff8f988f55ced0e2b91ba98"],["sourcecred","git","COMMIT","d9900e922c90ce1d244761f1e2ad2fc4fb65f298"],["sourcecred","git","COMMIT","d9b40e071c2f216b8fb4cebce788ec1bf892ac7c"],["sourcecred","git","COMMIT","da69104f37bc78c1c71a34b9fafe537f875ca7dc"],["sourcecred","git","COMMIT","da9fa8ec523e360ace96eba7bc72bedadc69c8ac"],["sourcecred","git","COMMIT","db97114fd0dbcd580c0a88991f4b6991d0bef4e5"],["sourcecred","git","COMMIT","dbb4bbb4a48bf36b3890cb23012337c0bfbfc6c7"],["sourcecred","git","COMMIT","dc008266ba36121c746ddb6b60121b6e084d3065"],["sourcecred","git","COMMIT","dcba3eb54f781973155ef382ed674685adb9491f"],["sourcecred","git","COMMIT","dccb0bae8344da0fa4bc886fd642bd819e5ab204"],["sourcecred","git","COMMIT","dd687457b7a8178a907116c7880a1bb498bb4131"],["sourcecred","git","COMMIT","ddad2121732e1f0646c5ab6d3d8fc51c431f94b8"],["sourcecred","git","COMMIT","de56e092581eb21affd70f681de349d461487d47"],["sourcecred","git","COMMIT","def7f01015008f1aefda848d93661555c086231a"],["sourcecred","git","COMMIT","defb8c56dbc8ed6a58674a7c569010ddc17fea0b"],["sourcecred","git","COMMIT","df39053f37bf93823cd4364b819ca1289e4481b1"],["sourcecred","git","COMMIT","df4aca3876a771513b7e5d9a0c28517746508961"],["sourcecred","git","COMMIT","df9f7423f0e18a57835324b459fe243d3f3e55ab"],["sourcecred","git","COMMIT","e00d2fbc8959a1a8dd6907627c0f13731dd5b7e4"],["sourcecred","git","COMMIT","e0cd35442d7cf4999adc586ee0c24e3fc3bf2e1f"],["sourcecred","git","COMMIT","e11bcaa214504bd338f41f0684c387377e91d223"],["sourcecred","git","COMMIT","e27f889ed7e899c482d528e5bafb0a950047db35"],["sourcecred","git","COMMIT","e2dddf8e3303043dae6bf8efc44777965d5fde9a"],["sourcecred","git","COMMIT","e3707010bd6cff203cbe2450f48d2ee7bbc5d155"],["sourcecred","git","COMMIT","e41eb256be1cff6f8173bf1b4ab1e08d82680377"],["sourcecred","git","COMMIT","e4db1e5c01390590a53e47424b6fc6389fbed459"],["sourcecred","git","COMMIT","e5810c7e956182f58bacafd24c51f8be7e6af31f"],["sourcecred","git","COMMIT","e5c721ba787d25a591d470c5ba11d9bd41e1797f"],["sourcecred","git","COMMIT","e63ec70c3b75de539e86faf77c9e44f83753cb1f"],["sourcecred","git","COMMIT","e7d262bceecfcab743754d6d3a41fea1d74be955"],["sourcecred","git","COMMIT","e86fcfd2e1ddf643bc06ef0a08d439899b509c8a"],["sourcecred","git","COMMIT","e8c036745f6c3d82f34e46e6f40ce520f53be1ef"],["sourcecred","git","COMMIT","e8d2566e023a7cefb04c5157b0f85568fcb9a3c5"],["sourcecred","git","COMMIT","e97f15b28e12292f7df8de6515a27b63f989acfb"],["sourcecred","git","COMMIT","e9a68209df1f07b4f9f28319e98dcade12ebde80"],["sourcecred","git","COMMIT","ea5b35e7658fc8550736aa7ef2e3e4a37c8395a2"],["sourcecred","git","COMMIT","ebfca230987726fb6d0c74cdba1e7346b5d08345"],["sourcecred","git","COMMIT","ec5436b68ec36cea41f923ae2d95841b7dbe678a"],["sourcecred","git","COMMIT","eca1c8e4fb9897f86e7192f1741d00509707a42d"],["sourcecred","git","COMMIT","ecc49af4d29ddb86bece5cf38e3295d03d80efc8"],["sourcecred","git","COMMIT","ed75cb58e840a9712a7fe5678e0234538101824c"],["sourcecred","git","COMMIT","ed85892fe323a252ac0d44ca5ce619fe73cc8a5d"],["sourcecred","git","COMMIT","ee30ad273845bf58d551566ffe5c4e87e98c07c2"],["sourcecred","git","COMMIT","ee805c230d58b420f39bedd6d7dc5c10c8f14856"],["sourcecred","git","COMMIT","ee80ee18c4c10447c5e3d180c7cb87d177cf6bab"],["sourcecred","git","COMMIT","ee958e4ea4a9d7db08a45e558912449245e1f619"],["sourcecred","git","COMMIT","ef1a4e1d3bf70f9daccebdf3028ea8f476c26899"],["sourcecred","git","COMMIT","efe2a210242adcd52a288d57f373b09187b88c17"],["sourcecred","git","COMMIT","f024b3aa2227eccef235a3b4d5a76e7f04cc78fc"],["sourcecred","git","COMMIT","f13bf3f7a6dfeebd2725261a11357612547e0783"],["sourcecred","git","COMMIT","f1650581495bd5ba951e6aca3adc65aa4271e7ec"],["sourcecred","git","COMMIT","f1b1a348514a8d88750c2774a379a00b85ea0810"],["sourcecred","git","COMMIT","f1ec698041e4fdef5931f7928a751a8a45433b9f"],["sourcecred","git","COMMIT","f3484bc0a5f204b3b6cd3159a0e3c274c2056154"],["sourcecred","git","COMMIT","f370b16891f4dc805ea30ac6b5a3042c8224bb45"],["sourcecred","git","COMMIT","f3d076f67797f6c3491e046a5dcdce0372890de5"],["sourcecred","git","COMMIT","f4379c34b30691a61e67438d4da4192f7cb18710"],["sourcecred","git","COMMIT","f4597eaa6b0681ebfb7e32991fc295f52427d199"],["sourcecred","git","COMMIT","f4b57f657a24f0feb175f404718f49ffc506edc0"],["sourcecred","git","COMMIT","f5b6b5b9b8ab493342591799369bab4473ad4bd5"],["sourcecred","git","COMMIT","f6a88b69728fa2cbc9304a9d3a6193afa9aca17c"],["sourcecred","git","COMMIT","f74897580057b86bf1ec803694b2494dc5099ba4"],["sourcecred","git","COMMIT","f78660ce09132d6127ab960a0fdb9f19f2b76893"],["sourcecred","git","COMMIT","f79294b14e900ca927b3e9e5cf51972814cd2c50"],["sourcecred","git","COMMIT","f7ecdc6617ce77574676654a84f58313ad9f84a8"],["sourcecred","git","COMMIT","f819ec520e754c4adb46d13d0126fa48f03b0dac"],["sourcecred","git","COMMIT","f8cc3c0cfe61b256ef079488a26d06b59f6f8ca0"],["sourcecred","git","COMMIT","f96bc3f66106ed4341d674b5a37a1fce8035c922"],["sourcecred","git","COMMIT","f9f862051f1b8310f274b4e8e8c20604a75bda59"],["sourcecred","git","COMMIT","fb4fcae94286c8bcdda97e172bc867ab4e08b76c"],["sourcecred","git","COMMIT","fcacf68e748f6ee1883db51392267fc8537db08b"],["sourcecred","git","COMMIT","fce33399d0696995385d8895995cb0fdaad56615"],["sourcecred","git","COMMIT","fd8dac99c58c603001fa56c8d2dd2553db8fa6c0"],["sourcecred","git","COMMIT","fdaff82509a99dc7adb3d1289b2ad02a339fe19e"],["sourcecred","git","COMMIT","fdf6857a29d796d7cfdea7f7d45a67a9c05d50d2"],["sourcecred","git","COMMIT","fe33dab74a05f43d1e24044dc4413ff0e72aad50"],["sourcecred","git","COMMIT","fe865a679a723590923af6394366b58fb01c8f50"],["sourcecred","git","COMMIT","ff708c3b7352a9b659df8120351e6f1eab566a2a"],["sourcecred","git","COMMIT","ffec223be5fffa16d0ce2effb0aeed1b959a2532"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],["sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],["sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],["sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],["sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjA3ZTBlNWYwMGUxOGUwMGExMjg5MmI0N2JkM2Y1Yjg3NDE4Mzc3ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyNDVhNDAwMmEzNWMyYWRjY2ZlZDFmNjhhNjc1YzMwYmE4NzFiYTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjBlNDY4ODQzMTkxYWQzYTI0ZmY1YjgwM2IyZTM4OGExMmU4OGEyODk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1YTgxMjdiYzU0MDJjNzIyNGJjNTkyZjg5MGE1YmQ3Zjc5M2M2YTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjExZmNkMDlhMGNkZTA4YWYwOGI1YzVjOTUxZjU0YzE1MGNmNDdlYTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyMjJlNDliNDI2OWYxNWIyYzcxY2ZlNGI2MmIxMzMzYWJlZWE1ODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyY2YwZjE2ZDQwNmYxNGMyNTk3YWJjMTMwYzRkMmJmYTk5MjdmMzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyZGRkNGUzNTYwN2MwMTg0Yjg5OGM4OThlMjZlNDVjNjAxNzY0MmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzNjM0NDE0MzM3ZTczMGZiY2I0MDNlMjY1N2E4MDA3MzQ3ZGRkOGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzZmM1MGQyMmUyMzUzY2YyYmIzODk0OGNhZTRmYjVmYjU5MWNlNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFhNzkyOTQ2MmZjMzU0NDg0MDhmMGQ4NTRhNmM4Yzg5OGMyZGI5NGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFjYWMxNWVjYWU1ZTYzNmZkNWQwNDlmYzU5OTNjY2QxMTMxMjZlNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFkYzRhMmMyMzUyNTA0M2E3YjZlMzJhNzk4MzdjYjZhNWE2MmZkOTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFlZWQzOGM0Y2ViZDYzYWI2ZmM5NTM3NTY0YTUzMDRhODcwY2FhMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFmMzUwZWFkMjJjYjUwMzkzMmVjMzZiOWQyMWI3MzVlYjk3ZWIyNTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI1YzE2YmI4NTgwMTI3OTE5NjAxOGI0NGVjMGRiMDgzNGZhZGM0YTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI3YjJiZjNkN2RhODNlMDQyOTVhYTFjMjI5N2U1MGNlODE1N2Y0MzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI4YjBlM2YyZDhmZDQyNTY5ZWI4MDNkMTA0MzVhYThjMGVkZjI4ZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJhMTIwNGI0NGY0NGQ2ZDkzY2Y5NTJlMTgwNGFlZjI1ZmZiZGQ3OGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJkNDQxOTFhOTk2OTUxY2NiZWQwMDA5MjgwODk5NjE0ZDYzMTc0Yzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmNDJhMmEzOTE2ZmU2ZWRlOTdmMWZhYzlhZGMxODk3ZmNiYWEyYmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmYWQ5YWFiNjg5NzIwMWU2YmMzNTNiOTc0NmMwM2QxZTcyOGQ0MzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM0NzIzOTYxMTk5NTY1OTM3NDkzODM0MDcxNjY1Yjg3MWE2MzJkNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM1YmYwODI5YzA2OGFhMjBkZTUxNDY2ZWExMThmNzU0NzcwN2RlMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2NDA2OGVjOGRiODZiMzc4ZDYzMGY1OTFkYTNhMDJkZTg3MDg3OTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MWIzMmJmZGI1YWUzN2QyY2U0MmQzMjMxOWZiYWRkZTcyNjYzZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MmU2MDFkMzE3OTUwNmRmZTdlYzBhZDIwY2Q1ZjY3OTY5NmU2NmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YjBhOTAyYzFjMTc1MTJhNTM2MzgwNTAzYTUwNmZjM2NhNjE1YmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YzZkYWFhNWZjYTYzMDViOTA4Y2RkMjg4MTExMDdlYmE2YmNiZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwMDE0YzExODQxYzlhNjA1Y2M5NGQ1MTdlY2U2Yjg2N2FmZDhjZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwNzU4ZDA0YWE0ZGE5N2ZjMGFjZWQxZmEyMmNiZGVlNGE4MmM3OTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwOWE4OTU4NmRhNWUyZDQ0YjQ4YTYwN2M5MzM0YWVmNmY2ZGIzZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxMWJmMjZhYTUyNjhhMDY3YjBiZmM4NzA4YTkyMmQyZmQzZDBhODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxN2ZmYTE0NzFhMDE3OTAwN2I4N2Y5M2FhYzIyMjM2NjY0NDNkNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNDg3MWMwOWI2NzQ5OGUzMTU3NWI4YWFhOWMwOTQ0M2QxNDJhMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiOGU0ZjU0ODQ1Mzg4ODUxMjkzYjI2MDUzZjRkZjY1YjRkYzk4ZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiYzk5MzQ4MzRiOGE2NTI5MTQzOWNiYmEyZGFmMDYxNDQ4ZTMwZmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNlNWUxNDQ1N2ZhMTQzNDI1ZDI2NGE0ZmE5NDE1OTFkMTk3MzBjZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNmNDdmMDc3MjNiOTdmMDMxMWYzMmI3OGRhOTkzNThkMmM2YWZmYjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Y2YwZmJiYTE4YmYzOTJhNDQ5NjJmYWVkMWUxMzAwZWQ2ZmE0NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Yzg0NDQ3NWM1ZTJiZWI1YWNkZWZjN2U0Y2Q1NGU5MGQyZDg0ZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ2MzllYzhkYmExMmU4YzdkM2IwYmY1ODliOGM4YTA5YzUyMmFlNDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ4ZTViNDQ2N2M2MTA3MDQwYzEwN2Q1NWJjMmZiZTA3YTU3ZWEzYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxOWQzOWQ4N2ViMzE5NjVhOGY1Nzc1MDc1Y2I4MGJlNmE1N2FiZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQzMjA0MmY2Zjk2NWJiMTEzYWQ1MDk1MGNmZGJiODJjNDRmMGRjNTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRhOTA3MzQ4MzJhZTRhZDMyOGZjMDYyNzEyZTJkZWNhODhkN2RjYzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRiNGM5ZWE5NzA1NDY1ZDM5ZjMzYjM5ZWEzOTgxOWM5Yzc3YWE3OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU1NGM5NjQzOGZkYmVlMjAzMWI4YjVhYzE2YWEyZDZkYjZhN2Y0MGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU2MTcyYjYwODc0MDBmYTgxYzEzZjM5ZjM3YjIzZWMxMWRlM2M5YjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3ODU0NGQwNTU3NjE0YzAwNzgwMDg5ZmE5ZjgzNDM5NTBmOTc3ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwOWQ4YzAzYjFhNjcxMjlhM2U5ODA3M2RkMjRmOTM3MjNjZGZlNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUxMzA4NjIxZWMyODQzMzUwODUyZmQzMWY4YzBhYTA4ZDZkNmE4MDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVhZmI0ZTA4MTcwYzFiZDJlOWY1ZmI0ZGQ0MmM2ZWY1ZTJkMjM4Nzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjViODVhNzQwNTQ4OWY3MjBlZDBiOWNiNTE1MGMyNjE5ZDQ1YzllOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjNjIxZWU0YzY0NDcxM2EyNjI3YWZiZmVkNzQ1NDgyZmU1NTI1ZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjOGU2OTVhZDM0MGU2NWU4NTg2MmRjODIwMmQxN2U3M2Q5NWJjM2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1NTI0MDk3ZWQ1ZGUzYTgxNWU5ODliZDQyMGUzODE3N2ZlNzBiY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1ZDJjYTM0M2M1MTAyMDQ3ODA5NGJhODdiNWRiNGFmNjQ2NDc0MWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY3ZDQ2MjI5NDg5MzA5MDM1Yjk2ODM5MWU2ZDE0NjExZWJkNWMzZmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY5ZDFmYjc5Yjk2ODBmN2VjNWU4NTU0ZjJhOGMwZjgxZDc0ZDlhOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjYzNmVjNmExNjA2NGM4YzMzZWI0NzYzMzc1ZDUzYWM1ZDhiZDFhMTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZhOGJmY2EwYzkzNmYzMDRjYzlhMmEzMzk5Njc2YmU0NmFlYTk5NjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZiOTY5OThlN2MyZjhjZTUyZGMwOWViYzllYTUyNGQwN2RlYmUzOGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZkNTFlZTgzNmUxMGU5ZDdiMzgwMDZmNWU0OTY2NTVhZTE4YWQzNjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc4NjAxMzc2NTIyYzMyOWMwOTQwNzU0MDIwZmY0NjU0ZmZlOTM3Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc5MzFjZjIwYjUxNDZiY2E2OGU1MWQyNmNkZWJhZGU5YTFkM2E2NjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjcxZTA4NDY0YTY1NGIzN2IwNWZlNTM0OTY0OWEwM2Y0NTc5MzNmYTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiNmQ2MTY4N2U1N2QxNWE0NWQxOTViMWVkYjU2NzQ1MWEzMGRiMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkMWY2ZTJkMTNhYjQ2NzcxOWYyODc4MDJiMTZlNzk5ZGVlYjVlMjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkYzQ1MTRjZDQxNWNjOTI2ODI3ZmUwMmNiMjg5MWI4ZDZiODBlNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdmZjc3ODI0ODliNzg5NDE0OWNjNWYyMTFkOWRkYWZjZjg0OTE4ZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg1YjZlOGNjYTJkNmJjNTcwOTQ0OTYwNWM4YWM2NDVmZTc0Zjc4ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg2MTllZTI0NTJlN2JmMTA5MTY5MDE3YWNjOTY4YmJhM2U2ZTEyOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YTE1YjU3NzJkMWRjMjE3MzcxODFkN2RkYTI2Njk1YTBkZmVjY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YjMzN2JlZjI5NmRmMTBhOTRjM2IzOGNlMWUyZWY0Mzk2ODg2ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxN2NmODk0MGNiODhiYTc5MGM2MDIxY2U1NGJjYjAxOGFhMGNlYjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxYTY3ZjQ4MTIwNDQ5Mjk0ZDNhYjk0Y2M3Njc3NTVlMGJmMzc4NGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgyNzVkMWI1ZjNhNzc0MjY0ZDU4MzNjMjNkODk1ODM0Mjk0MDA5MmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkOTYwZjA0MTVlOGNlOGE0NWQ3MDA1YzRlZTM5OWRlNjcyMTQ0ZDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkYTMyYmIyNDM2MjE5ZTNhNTU2MzFlNDI2YTcxZDNkNDVkMjdjMzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk0ZTUxZDlhODNjZDY3YjRhZDgyYzY1MjkyMTJlNzJhYWM4NGFmZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk1ZDU4ODRiMTJhNWE1ZjFkMTg1NTIyNzdlMzc1OTdmYjYwNDgyOTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk2MjBmYjhiMDM4NjE2MGUzNjRlMzhkNjNhZDNmZWRlNGExODJjZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk3OGYwNTJiNjNhYTIwOWVkODEwN2RhZDcxYzU5YTQ0NjQzZTc0YmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk4Zjc2YzRmYTkzNGEzZTA4ZGM0YWJiOGMxOTY5N2M3ZWQxZGE4MWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjkzNmNkMjJmZTE1OWJmZDdmOGJlZDUzOTc4M2Y1MmM3NjhmMjBhOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhNWI0ODllMWJiY2MzMDZjZTRjNjM2MmFhNWFhZGZmNjBlNmEyN2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhODY2NDI0Zjg0YjQ2OTc4M2RmZTU1OWE1MTBmZmM5M2UwMGQ2NGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhYTBlY2Q2ZjUzN2MwZjNkNWY2ZjIwMGM3YzU0NDhkZGMyOGM5ZGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkMGNhY2YyOWVlNWY2NjY4NDI2YzBkZDljY2ExMmFkN2FmOTA2YWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkODU2MGY3YTE3MGNjMmMwOTM3YmE3OTgwZGJjYjQ2NmFkMzE0MGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjllZTZkMWIzYjBkN2IwNmMzYWJlYjdiNDk2ZTgzMDY4M2M1NGY2ZDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE2ODUzYTgzOWIxMTAxYjA3N2UzYjgwYzMxMDZkYTAxYmUyODA3ZWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE5OTlkNmJkMzVkZjE5OGJhYjYyNTI0MDQzMjVkN2E5NDQ5ODM0MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEwZmI5YjgyMmJhYWI5ZTBmY2U4NDMzYmUzZGU3ZDQyM2UxYjRkZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyNTQ3ZWI3ZDE4MzVlMDUwYTg5NzE3MmI1NjNjY2I2OWI3Njk3MTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyZmQ3ZTA3Njc5NWM2MmEwNzUwMWQ1ZmI3MWMwMzk5OWNjNGIxNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEzN2E0ODI1NmQ5OWE2M2ZjZjBhNjc4ZWJiYjM0Y2NhMGZkOTVmMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFlNjU2YTFhOTllOWE4Y2MyMjdjMTg3MTU0MTIzNTcxZDlkMTY4NzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI0Mzk0MjEzMzAwZmY0ZDcyZWJhY2E3YzYzY2Y5MTlkZjMwNmVhZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1YWQ1ZWVhNDAxYjRmNDE1YjlkYTQ0NjE4N2I4OTNhN2NlZWUxYjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1ZGYzYzhjZDg1Y2JlNDM2MDZmMjA1MmYwMDYzMWRiZmNjYTQyZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2Mzg4ZGI1ZWI2YTZmZWQ1NmViYTY2MWRiMmI3NjFjY2RkZmQ2ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2NzA1NzRiZDJiY2YxZTBhNzFjMzZiOTQ0N2IwZDVmZmUyMmI5YWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4MzE5ZDM2MTZjN2Q1ZTZjMmFmODA4N2VhNjNlOWZhYjFhNzNjMDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NDJlZDNlYWY2ODc1MTNhMGQ5MGVhZmRmYjBhOWVjNmZjNTg4MmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NWMwYjVhYjk4MzU3YzZkYzNhZjY5Mjk3ZTZhNzk1ODUxYzg5ZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI5MzA5ZTRkNDQyODlhZjgzNDFmNDMxMDNiN2JlMTk1ZGY1OTk4YjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIwMzhmMWNhOWY5YjZhNWE1NDkzNWMxYTczMGQyZTMyZjgyMjBjZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIxZTI0MTg1YzU2N2M0ZjlhNjA5NTk1NTllNmZmMWFjN2RiYjYyNzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzZjY2N2M3NDZkNTRmZDFlN2VmNDFkNGU5MTE4NmZmNzA1Y2IwMWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhMDhmMjFmMzhmZWYyNWU2NWEwMDZlNGFmMDA1OTFmNjIzY2JhODg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhNjkzZjVmMTE2Y2YxOWQ5YThiZjFiZjU1YTRlYzhjNmMxOTI5Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiYzU0ZTQ5NDcxOTBkYThjMzdkNzY3ZTAwNDMzOWI2MmZiMzRhYWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkZDFkOTUwOTVmYzk5MTg2NzU0NTAyYzk2YzFlY2JmZjIxNmZiMTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJmZDMyMWE1YzM4NGRjN2ZhYjk5MDYyYmNjMzQ5MTcwNTMwM2ExNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0NjFiYjQwMzY2YmU2MTI0Y2M4ZTA5YWYyNTc0MWM1ZTY1YjFhNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0YWUyYjk1ZWRkMjIzYTJiMzI2OWY0OTEzYzVhMjM3ZTc1NTcxOTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1MTlhMDkxNmYyMzg2NmM5OWMwYzc2YmFkMzNkZWMwOWM0YTEwNTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1ZWVhYzk0ODU2OWEwNjYyMjc0MGQwYjkzNDBjNjIyZGRiNDY5ZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM2MWJjNzkxODMzNzRlN2UzN2E4NDU2ZmY0N2Y2NjJhMmJjMjFiYWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM3YWNlZjhhNTY2NGQzZGQ1NzA1OWU4Y2M0NDdjNGYxZGJlMjY5ZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMzNzgxOGRjNTRkYjMwMmMxYmIyYmZlOTkzMTIwODRjYjY0NTIyNjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNjNGU0ZmY5NGIyZmU3OGQ4NzI3OTYzYjQyYmMxYzMzYmZkMmU5MzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmMzU5ZjU2YTllN2Q5ZTM4MGE3MjlmZTY0ZjBmZDllMDY4NTNjMjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmNDE2MzYzNzlhY2Q1ZmI5ZTI3YWY2MjcyN2ZkZjY0YTExMWQ5NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ0NTU1NTU0ZDM0N2IyMzg1YWM5NmE1MzBmNTYyODQ5MWMyYzcyNGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ1OTNiMTI2YWY1Y2NkZTMyZmU2MTBmYmMzOTlmOTIzM2M0ZmNkY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ3ZTU3NjNjMzc1ODIwNjdkOTMwZTUzNzE4MjczZWVmNjc5OTdkYjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ4MDM0YzFhOTk3YTZmMzc2MmViNjRhYmVmZDM5ODNjYTVjMTdiMjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ5YjQwZTA3MWMyZjIxNmI4ZmI0Y2ViY2U3ODhlYzFiZjg5MmFjN2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQyMTBkNmYzODc4NjBiNDczNjE5MzYyNDEyNWVjNWUxYjhmNWM4OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmMzkwNTNmMzdiZjkzODIzY2Q0MzY0YjgxOWNhMTI4OWU0NDgxYjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmOWY3NDIzZjBlMThhNTc4MzUzMjRiNDU5ZmUyNDNkM2YzZTU1YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU2M2VjNzBjM2I3NWRlNTM5ZTg2ZmFmNzdjOWU0NGY4Mzc1M2NiMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwMGQyZmJjODk1OWExYThkZDY5MDc2MjdjMGYxMzczMWRkNWI3ZTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmViZmNhMjMwOTg3NzI2ZmI2ZDBjNzRjZGJhMWU3MzQ2YjVkMDgzNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjNTQzNmI2OGVjMzZjZWE0MWY5MjNhZTJkOTU4NDFiN2RiZTY3OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjYTFjOGU0ZmI5ODk3Zjg2ZTcxOTJmMTc0MWQwMDUwOTcwN2E0MmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVmMWE0ZTFkM2JmNzBmOWRhY2NlYmRmMzAyOGVhOGY0NzZjMjY4OTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY2YTg4YjY5NzI4ZmEyY2JjOTMwNGE5ZDNhNjE5M2FmYTlhY2ExN2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ODY2MGNlMDkxMzJkNjEyN2FiOTYwYTBmZGI5ZjE5ZjJiNzY4OTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3OTI5NGIxNGU5MDBjYTkyN2IzZTllNWNmNTE5NzI4MTRjZDJjNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ZWNkYzY2MTdjZTc3NTc0Njc2NjU0YTg0ZjU4MzEzYWQ5Zjg0YTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY4MTllYzUyMGU3NTRjNGFkYjQ2ZDEzZDAxMjZmYTQ4ZjAzYjBkYWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY5NmJjM2Y2NjEwNmVkNDM0MWQ2NzRiNWEzN2ExZmNlODAzNWM5MjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYxYjFhMzQ4NTE0YThkODg3NTBjMjc3NGEzNzlhMDBiODVlYTA4MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYzZDA3NmY2Nzc5N2Y2YzM0OTFlMDQ2YTVkY2RjZTAzNzI4OTBkZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmZlMzNkYWI3NGEwNWY0M2QxZTI0MDQ0ZGM0NDEzZmYwZTcyYWFkNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAyZjRkMzYyM2FlNGU4OWZhNjIzMjQ3N2Q5N2ZlMzJiMjdhYWU3YzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzNjA0YTdkOGY5YTZmNDg4Zjc5OTAzMDllNzAwNjZhMTI2MDQ4M2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzODhmYjAyMTlhNzQ2MGU2NzI2YjM0ODM1YzY3MDk4NmJlNTQwNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBiMzUxNDEyY2ZhOTJjOGVkYWJlYTE0NDlkYTE2YTdhMjEyOGM4MWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBlOWRiZDg0MDZiMjU2ZjZiNWU1NTNkNjc2OTY4M2E1NTkwOWFiODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE2MzA5ZGE2Yzc4NmVmZTlkYzFmNzQ1YzYxYWQ0ZjJjMmFkNjFkNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE5MWU3M2U0MjlhYjE5M2U1OTE4OWY0NGIzNjNkNjk2MTNlZTAzMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjExYTQ1ZWIxODhhNzU2ZTMxZjJlY2UwYWZjZjEwYWZiNWUzMDExMmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI3NWQxNjNlZmRkODEyY2RjZDZhZTJmNWE4YWZmMWJhYjNiZWQwZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI5ZDlhOGVmMGQ3MzhkOGIxYmRhZTg3M2M4OTJhZjQxODU4Y2RhMGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJkMjkwYjIyODhhMTRkNDk0ZjBmYzE4YmZhYzg4MmVmNmM2MTdlNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM2ZWQ5NWRkZjgzNDliYTNkNTU3YmZiYmVmMDY2YjI1NTliNDMyYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNTI5MjM5NDA5NjllMDU5NGM5NjkzZDI3ZTgwYmY4MWU0OWJkZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNzE2Y2EzOWEzMDVlNWQ4YTliMmE1YWE0NjYwMzk0NjZkMDVhMzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNlMzc2MDAwN2M5ZDBhOTQ3MWY1ZjBkNDI5YWM0YzMwYjFmYjU0ZjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzcyMzUzZjhkOTUwMjI2ZDkwOWIxMjc3OGNiZWQ0ZGYzZWQ4NjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZjI1ZWE0ZWI2NDY0MjdjMDZlNThiN2U0Y2UyYzRjZDM4NWMzMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQwMDM2YTM4NmIwN2M0MWI4OWU1OTQ3MzZkYWRiNjEzNGNmMTgyZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhNjIzZmJjMzczNWM5YTMyZDEwMTk5ODgwMjE0Y2M3OWNhYTQwMDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRlYzZiZGM2YTEyMGUxMjMwNTJlYmY2OTBkZGY2ZjMyYjljMzU3MjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU1NGE4MmJjMDVjYjcxM2U5MmU4YjM1MjNiNTIxMDc4ZGFmODI5ZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU2ZTE0NTBhYmQyOTQ1N2QzYWVmYmRhZWYzZTM4NTYyNzI3Yjc2Mjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUwMjNlZWU3MWM5YzNmMmYxNmRlMWIyMmU5ZjM3ZmRhMjZjMmYwMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzYjZmMWI5ODBiNzk3ZjkyZDU5ZmM0OTEyYjJmZTZlOTk5Zjc3NGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzZDliNjI4NjJkMGU4ZWY1OTdkYmZmY2JkMGRhOGJjZDEyMTAwY2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVhZTZkYjc0ZWM2MzgyMjJjYjYwOTU3YzMxMDVlMTVkZTdmODQ0NTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkZDA1ZTM2MDVlOTk0MGY2NWYyMDU5ZThjNDI4NjA3N2E2NDM5ZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmNjg5MDEwZjZlMGE0Mzg1MTNiN2U0NGVmMzdhZTEyZDU5ZGRmOTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmYzk5ZjA5MjZhMzgxNDBiYzQxYWI1MzIyZTI4ZTQzZjViNTA5Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNDRkYTc3ZDc3Y2Q1ZjBiZjc4MmZkNDdmYWY3ODEzY2I5YTAwZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNGJhODc2MWNkZGRjODRiZmE2NjQ4NWZlMzY3NDk1ZTVjOGE2NWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYyZDQ3MjQyMzMyZjRlMWQ4NmY3ZDdhZTQ2MGY2ZGM5OTgzNDRhYTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmMWEzOTY4ZGFhMWUzZDJiZDYwN2Y4MWE1OTlhYzVlYmY3M2Y3MTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmYjU4ZDJiY2IxMGVmYTFhMTgzNmIwYmYzMzU3YWU2YmMzMzk1NWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjcxM2FjYmQ0NTkzYTdhMTBiMDU0NGFhYWI3ZmM0YWMwNWE2NmY5YWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczNTA1YzM0YTFiNDZhM2RmY2FjYTRkOWMzYWExMTZmZGY1MWUwZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczZGJmZWEwMGQyNjlmZjk1M2VlNTBjMDM0ZjFjNjkzOTc0M2E1ZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhOTkxOTYzYTVjOGZjOGRiYTRhYjZhMGMxZTM5NDIxZWVlYzQ1ZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlYTU5MTZhZDZmOWRlOTg0MWYyNzc5MDE1MDZhYjcyYTM5YmYxNTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhhNTg0ZTRiNGY5YzhhMTExMWJmMzgzZDNhN2E3MmNhM2Y4ZWU1Yjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlMTNmMzlkMTM3MmI0MjJhOTE0ODU3ZjMyNGVlNjBhYmQyYzc5NWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlODBiOGZmNWJiYzgxMjNlNTdhYzcyOGZjOWVmY2QxY2QyZDAzOGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk4MmE4OWRmMmI1MjgyNTc4YTc1OTNlZWE0OTUxMWFlODAzZWUxMGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzNTZmZTM3YjNlZTIyNTZkNTI5YTYyNWE0MmQ4OTA5NjI4NzAwOTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFjZTNkODIxODMzYzAxNTdlOGUzZjc0YzA2OTUxZmU3OWNiYjQ5ZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFmM2ZjNDBiMGI0ZjAxMGY0MjM2MzkxYmMyNDViYWI1YzNmYzUzNDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1NWE3YTE5NmI4Zjg1ODE3ZTg1NDhiZjdiOWFmYmExMzQxMTMxZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyZWMwNjQ2YTc1MzM4MjhiMDAzYTdjYzUyNWFjMGVjNDhjNWQ5YTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJhYjQ4OGUwNTMxYTgyNjc3NzgyOWU3MGM0Y2Y4ZjYyMDIwMmU4ODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJiNGM4MDYwOGRiNTJjMDNhMzNiMDllZGJmOGZkYmZmYzY2NmM2NjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJjYzBkMWUxOGY1NmMwZWUwOThjN2ExMzE2YWZhNTI1MmM1ZDMzOTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMxOTFlNTdmNDQ2NjJiY2I3NTNlYzRjMDhhMjU1NDViMGQyNWUyODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMyNjRjZmUxYmM5NmM3NTgwNzliZmZjZDcyOGY0OTdkMGQ3YzAxMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMzNGJjOWM1NzNlYWNjMDA4Y2E5ODY1M2RkZDI2NjFmODIzZmY5YjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRiYjRiYmI0YTQ4YmYzNmIzODkwY2IyMzAxMjMzN2MwYmZiZmM2Yzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU0ZGIxZTVjMDEzOTA1OTBhNTNlNDc0MjRiNmZjNjM4OWZiZWQ0NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4ZDI1NjZlMDIzYTdjZWZiMDRjNTE1N2IwZjg1NTY4ZmNiOWEzYzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlODA1YzIzMGQ1OGI0MjBmMzliZWRkNmQ3ZGM1YzEwYzhmMTQ4NTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVmZTJhMjEwMjQyYWRjZDUyYTI4OGQ1N2YzNzNiMDkxODdiODhjMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0NTk3ZWFhNmIwNjgxZWJmYjdlMzI5OTFmYzI5NWY1MjQyN2QxOTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY1YjZiNWI5YjhhYjQ5MzM0MjU5MTc5OTM2OWJhYjQ0NzNhZDRiZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxNjUwNTgxNDk1YmQ1YmE5NTFlNmFjYTNhZGM2NWFhNDI3MWU3ZWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZjZTMzMzk5ZDA2OTY5OTUzODVkODg5NTk5NWNiMGZkYWFkNTY2MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmNzA4YzNiNzM1MmE5YjY1OWRmODEyMDM1MWU2ZjFlYWI1NjZhMmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],["sourcecred","github","ISSUE","aracred","AraCred","12"],["sourcecred","github","ISSUE","aracred","AraCred","14"],["sourcecred","github","ISSUE","aracred","AraCred","15"],["sourcecred","github","ISSUE","aracred","AraCred","16"],["sourcecred","github","ISSUE","aracred","AraCred","17"],["sourcecred","github","ISSUE","aracred","AraCred","18"],["sourcecred","github","ISSUE","aracred","AraCred","19"],["sourcecred","github","ISSUE","aracred","AraCred","2"],["sourcecred","github","ISSUE","aracred","AraCred","22"],["sourcecred","github","ISSUE","aracred","AraCred","23"],["sourcecred","github","ISSUE","aracred","AraCred","24"],["sourcecred","github","ISSUE","aracred","AraCred","25"],["sourcecred","github","ISSUE","aracred","AraCred","26"],["sourcecred","github","ISSUE","aracred","AraCred","3"],["sourcecred","github","ISSUE","aracred","AraCred","4"],["sourcecred","github","ISSUE","aracred","AraCred","5"],["sourcecred","github","ISSUE","aracred","AraCred","6"],["sourcecred","github","ISSUE","aracred","AraCred","8"],["sourcecred","github","ISSUE","aracred","AraCred","9"],["sourcecred","github","ISSUE","aracred","TheSource","3"],["sourcecred","github","ISSUE","aracred","aracred-cli","1"],["sourcecred","github","ISSUE","aracred","bot","1"],["sourcecred","github","ISSUE","aracred","bot","2"],["sourcecred","github","ISSUE","aracred","bot","3"],["sourcecred","github","ISSUE","aracred","bot","5"],["sourcecred","github","ISSUE","aracred","bot","6"],["sourcecred","github","ISSUE","aracred","bot","7"],["sourcecred","github","ISSUE","aracred","comms","1"],["sourcecred","github","ISSUE","aracred","leaderboard","1"],["sourcecred","github","ISSUE","aracred","leaderboard","2"],["sourcecred","github","ISSUE","aracred","onboarding","1"],["sourcecred","github","ISSUE","aracred","onboarding","2"],["sourcecred","github","ISSUE","aracred","onboarding","3"],["sourcecred","github","ISSUE","aracred","onboarding","4"],["sourcecred","github","ISSUE","aracred","onboarding","5"],["sourcecred","github","ISSUE","aracred","onboarding","6"],["sourcecred","github","ISSUE","aracred","website","10"],["sourcecred","github","ISSUE","aracred","website","11"],["sourcecred","github","ISSUE","aracred","website","2"],["sourcecred","github","ISSUE","aracred","website","7"],["sourcecred","github","PULL","aracred","AraCred","1"],["sourcecred","github","PULL","aracred","AraCred","10"],["sourcecred","github","PULL","aracred","AraCred","11"],["sourcecred","github","PULL","aracred","AraCred","13"],["sourcecred","github","PULL","aracred","AraCred","20"],["sourcecred","github","PULL","aracred","AraCred","21"],["sourcecred","github","PULL","aracred","AraCred","27"],["sourcecred","github","PULL","aracred","AraCred","7"],["sourcecred","github","PULL","aracred","TheSource","1"],["sourcecred","github","PULL","aracred","TheSource","2"],["sourcecred","github","PULL","aracred","bot","4"],["sourcecred","github","PULL","aracred","bot","8"],["sourcecred","github","PULL","aracred","bot","9"],["sourcecred","github","PULL","aracred","website","1"],["sourcecred","github","PULL","aracred","website","12"],["sourcecred","github","PULL","aracred","website","13"],["sourcecred","github","PULL","aracred","website","14"],["sourcecred","github","PULL","aracred","website","15"],["sourcecred","github","PULL","aracred","website","16"],["sourcecred","github","PULL","aracred","website","3"],["sourcecred","github","PULL","aracred","website","4"],["sourcecred","github","PULL","aracred","website","5"],["sourcecred","github","PULL","aracred","website","6"],["sourcecred","github","PULL","aracred","website","8"],["sourcecred","github","PULL","aracred","website","9"],["sourcecred","github","REPO","aracred","AraCred"],["sourcecred","github","REPO","aracred","TheSource"],["sourcecred","github","REPO","aracred","aracred-cli"],["sourcecred","github","REPO","aracred","bot"],["sourcecred","github","REPO","aracred","comms"],["sourcecred","github","REPO","aracred","governance"],["sourcecred","github","REPO","aracred","leaderboard"],["sourcecred","github","REPO","aracred","onboarding"],["sourcecred","github","REPO","aracred","website"],["sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],["sourcecred","github","REVIEW","aracred","bot","8","395001410"],["sourcecred","github","REVIEW","aracred","bot","8","395035075"],["sourcecred","github","REVIEW","aracred","website","15","393444362"],["sourcecred","github","USERLIKE","USER","AlexMasmej"],["sourcecred","github","USERLIKE","USER","Beanow"],["sourcecred","github","USERLIKE","USER","Evalir"],["sourcecred","github","USERLIKE","USER","c0mput3rxz"],["sourcecred","github","USERLIKE","USER","vntrp"],["sourcecred","identity","0xGabi"],["sourcecred","identity","Aaron"],["sourcecred","identity","burrrata"],["sourcecred","identity","crisorg"],["sourcecred","identity","cslarson"],["sourcecred","identity","dandelion"],["sourcecred","identity","evalir"],["sourcecred","identity","fabriziovigevani"],["sourcecred","identity","fioreb"],["sourcecred","identity","hammadj"],["sourcecred","identity","li"],["sourcecred","identity","lkngtn"],["sourcecred","identity","mzargham"],["sourcecred","identity","onbjerg"],["sourcecred","identity","rperez"],["sourcecred","identity","sembrestels"],["sourcecred","identity","willjgriff"]]}],"weightsJSON":[{"type":"sourcecred/weights","version":"0.2.0"},{"edgeWeights":{"E\u0000sourcecred\u0000discord\u0000ADDS_REACTION\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000discord\u0000AUTHORS\u0000MESSAGE\u0000":{"backwards":1,"forwards":0.25},"E\u0000sourcecred\u0000discord\u0000MENTIONS\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000discord\u0000REACTS_TO\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000github\u0000AUTHORS\u0000":{"backwards":1,"forwards":0.5},"E\u0000sourcecred\u0000github\u0000CORRESPONDS_TO_COMMIT_TYPE\u0000":{"backwards":1,"forwards":1},"E\u0000sourcecred\u0000github\u0000HAS_PARENT\u0000":{"backwards":0.25,"forwards":1},"E\u0000sourcecred\u0000github\u0000MERGED_AS\u0000":{"backwards":1,"forwards":0.5},"E\u0000sourcecred\u0000github\u0000REACTS\u0000HEART\u0000":{"backwards":0,"forwards":2},"E\u0000sourcecred\u0000github\u0000REACTS\u0000HOORAY\u0000":{"backwards":0,"forwards":4},"E\u0000sourcecred\u0000github\u0000REACTS\u0000ROCKET\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000github\u0000REACTS\u0000THUMBS_UP\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000github\u0000REFERENCES\u0000":{"backwards":0,"forwards":1}},"nodeWeights":{"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000":0,"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000":0,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000629411717704712192\u0000":4,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000629412800346849302\u0000":4,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000635151982298136587\u0000":3,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000❤️\u0000571023281382227978\u0000695669843034243134\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696454968831508630\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696455224532926464\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699021694240686190\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699025335148216410\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000571023281382227978\u0000695669843034243134\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699025335148216410\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699326575627206778\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000571023281382227978\u0000696730540039995493\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000657069807505637397\u0000698965418370400296\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000250086586450968576\u0000698969730580742174\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000321092785921064961\u0000698973708316049488\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000571023281382227978\u0000698921390845198426\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000118260545211072517\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000250086586450968576\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000321092785921064961\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000440281764204642314\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000683892894767251489\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696427343220047872\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696441890048049232\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000699123164340551691\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000700087985634541678\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000321092785921064961\u0000699560532046250034\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000699275497984622760\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000700064920104075394\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420197644632116\u0000👍\u0000537858848912834561\u0000699284090607763506\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000698942081858666527\u0000👍\u0000250086586450968576\u0000699822779670724650\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000👍\u0000657069807505637397\u0000700040376085381152\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000321092785921064961\u0000700040917926543422\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000657069807505637397\u0000700040917926543422\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000🔥\u0000363774203960360961\u0000700039441799970969\u0000":1,"N\u0000sourcecred\u0000discourse\u0000like\u0000":4,"N\u0000sourcecred\u0000discourse\u0000post\u0000":0,"N\u0000sourcecred\u0000discourse\u0000topic\u0000":0,"N\u0000sourcecred\u0000discourse\u0000user\u0000":0,"N\u0000sourcecred\u0000github":2,"N\u0000sourcecred\u0000github\u0000COMMENT\u0000":0.5,"N\u0000sourcecred\u0000github\u0000COMMIT\u0000":1,"N\u0000sourcecred\u0000github\u0000ISSUE\u0000":1,"N\u0000sourcecred\u0000github\u0000PULL\u0000":16,"N\u0000sourcecred\u0000github\u0000REPO\u0000":4,"N\u0000sourcecred\u0000github\u0000REVIEW\u0000":4,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000BOT\u0000":0,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000":0}}]}] \ No newline at end of file diff --git a/docs/asset-manifest.json b/docs/asset-manifest.json new file mode 100644 index 0000000..f0485e3 --- /dev/null +++ b/docs/asset-manifest.json @@ -0,0 +1,14 @@ +{ + "main.js": "static/js/main.e0361f59.js", + "main.js.map": "static/js/main.e0361f59.js.map", + "ssr.js": "static/js/ssr.da9aa522.js", + "ssr.js.map": "static/js/ssr.da9aa522.js.map", + "discord-invite/index.html": "discord-invite/index.html", + "favicon.png": "favicon.png", + "index.html": "index.html", + "prototype/@AraCred/index.html": "prototype/@AraCred/index.html", + "prototype/index.html": "prototype/index.html", + "test/FileUploader/index.html": "test/FileUploader/index.html", + "test/TimelineCredView/index.html": "test/TimelineCredView/index.html", + "timeline/@AraCred/index.html": "timeline/@AraCred/index.html" +} \ No newline at end of file diff --git a/docs/discord-invite/index.html b/docs/discord-invite/index.html new file mode 100644 index 0000000..eb50f80 --- /dev/null +++ b/docs/discord-invite/index.html @@ -0,0 +1,22 @@ + + + + + + + + + +SourceCred Discord invite + + + + +
(v0.4.0-6257b754e006-20200218-1853-dirty-production) v0.4.0
+ + diff --git a/docs/favicon.png b/docs/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..4b8677d2364d65ab641ade094179e5a5da851a5d GIT binary patch literal 2579 zcmV+u3hecXP)?cqK=!2s zlu*>rR0x$yRH9H6kdRnjpnYho_Mx=mfwn{-!2{4np#>#TfJTG_LP;DFFY%IiUuHZW zd+gaf`||Z+V#i5{2%NWj?mg%Kzu$N6J^w5C9#+-9uNA>AkXwWhHL{EzKnS8T41wG& zWX0!W9Vfc)HmCTm1;x#K4LY6TS0J83rvA41ygX9rEWvn`Og6jZ9zbw7nO3|xed&1g z2NS4n-~X5_k@N|p_S7f8D5y^IQjmaFqGfw-MLd) z9nrrg3;B>)r(YgXq};3pK(CgV^artr&SYgrbp?#i&v2r*3$5x#y$d1#Y5n^3 zs$~MXb58N*>RKMza4&Vm#e8u28@!E*_ zj#|5(ey^X7$vGZf=LF!(5f9xiHxD(paereoD#dci)y+#qPb?Rq#ZmXRS*I)9TC*C3 zB;l|WP-oN8J3YZ_n~vtv0@^Ezc;`|-54Kq;Fsk`_)W@X>KU4k~SKI*(?XKqCZ-&`Z zTS`fuiPyjCBN$6iRak*pr$?<&lFnrDgaS*SVO79A^fz(+dhM*T+SpNBk5;83nvC=0 zMjMh49P1tD!sILux0JJIZ9XskyPK}50Pes|r-@>dhF{!U#V)bE9rfUAu}}f;zi{EzZ^0 zOeO|qrjaEE6_&Evr-2rL=CTSJOUjsyL^;tn#+e}(!9)VHQSkVd3Z6UCNhqGa4SdP6 zvP?9Yp{dNw(XKHDy10-ah-w`&qPD|?hc^-=;KMru_4q?7blult9R&)pBs%M$}3rGBQ6~YrweT;!qhPeAwmU?BLv85g71< zc zC6rlow;jJ*t=OdDwMSYx)jLo3w2wEw>L-}UV$$VNnwO7nF}z~67*SXpwN@w?Or)qQvY=8ZxV9kCSmL0u z#6d6?BM^&{CG(;HsM@q|U`g+_l~>VTwF-bxEP}|+gAg3r(#R#ZhfC95Uf$Qhb4R*p zD9PjUq@T@BE30fq)|BM&`{P%6c~3h6nfES_aCT&x4He~R)Yj{pmigDk^MvBD{_&2J zjZ5u#xkq1_b`eP?2*zTZzBWLKSH`_VNgZ`|Cm&rI;)|iHq%vtn=H>{+V+eA(Kmtgn6>kC_fK(>Ur+qyf z>$yy8xr05m4gmhyIYOJm#+u@M20c+~%r=H5U}`Q!Dq=t{X^{}zQ&og4%l!6KA3BW* zo6*F>ts9tFnCHkh=eaOG1mI37^lvQ_n7(v8D#Hs)Um>1K^I%geRaQIibuMsvWQGrW z+~gZ_is!SsM{T2;eXK*e9am_i6ph@7JLMG~AI@o{-N z&VR4X5KX4}Pp_AHyOYna4e-U#RXV38R#yJo;}<_ZvNXI&6IwIgXOZPI7sf{zn8`_~ zFNX&y&CjRMnA`nKI83?4Of;FhPN#x#CWC5_OyukH_`~TDqGQMp<)(c<6*7MW>Xv*qV;( + + + + + + + +SourceCred + + + + +

SourceCred vision

The open-source movement is amazing. It’s inspiring that some of our best technology is developed in the open and available to everyone.

Despite all the value provided by open-source projects, many are chronically underfunded. For example, NumPy received no funding at all until 2017, and a world where OpenSSL was funded might have been a world without Heartbleed.

These projects also impose a heavy burden on maintainers. Popular projects have hundreds or thousands of open issues, with many new ones being created every day, and only a few overworked volunteers trying to triage and respond to them. Burnout is inevitable.

SourceCred is our attempt to help.

Mission

SourceCred aims to empower open-source developers and communities by creating a project-specific reputation metric called cred.

A project’s contributors earn cred for helping out. For example, a project might reward:

  • Triaging issues
  • Maintaining the build
  • Fixing bugs
  • Writing documentation
  • Refactoring code
  • Adding features

SourceCred will build social capital within communities, recognize their hardworking contributors, and encourage more people to help maintain and develop open-source projects.

We’re designing SourceCred around the following four principles:

Transparency
It should be easy to see why cred is attributed as it is, and link a person’s cred directly to contributions they’ve made.
Extensibility
SourceCred is designed around a plugin architecture, so you can add support for new data sources, new algorithms, or even entirely new kinds of work.
Community control
Each community has the final say on that community’s cred. When the algorithm and the community disagree, the community wins.
Decentralization
Projects own their own data, and control their own cred. The SourceCred project provides tools, but has no control.

How cred works

Cred is computed by first creating a contribution graph, which contains every contribution to the project and the relations among them. For example, GitHub issues, Git commits, and individual files and functions can be included in the graph. Then, SourceCred runs a modified version of PageRank on that graph to produce a cred attribution. The attribution is highly configurable; project maintainers can add new heuristics and adjust weights.

This approach satisfies our four principles. It’s transparent: you can always see how a node’s weight dervies from its neighbors. It’s extensible: plugins can embed new types of nodes and edges into the graph. It’s community-controlled: the weights, heuristics, and algorithms are all configured by the project. Finally, it’s decentralized: every project can run its own instance.

Naturally, there will be attempts to game the system. We’ll provide tools that make it obvious when people are gaming their cred, and empower maintainers to moderate and correct the attribution when needed. In case of deeply contentious disagreements, cred can be forked alongside the project.

Roadmap

SourceCred is under active development. We have a prototype that ingests data from Git and GitHub, computes cred, and allows the user to explore and experiment on the results. We have a long way to go to realize SourceCred’s full vision, but the prototype can already surface some interesting insights!

In the near term, we want to help with issue triage and prioritization. Open-source projects are drowning in issues; many people file them, but few are motivated to triage them. We want to recognize the people who show up to do that work, and reward them by giving them more influence over issue prioritization.

In the longer term, we will continue to add signal to cred attribution. For example, we plan to parse the AST of a project’s code so that we can attribute cred at the level of individual functions, and create a “spotlight” mechanic that will let contributors flow more cred to their peers’ important contributions. As SourceCred improves, we have plans for how to use it to help open-source projects become financially sustainable.

About

SourceCred is an open-source project, and is committed to being decentralized. We don’t think communities should have to give their data to us, or entrust us with control over their cred. The lead developers are grateful to be supported by Protocol Labs.

If you think this vision is exciting, we’d love for you to get involved! You can join our Discord and check out our GitHub—many of our issues are marked contributions welcome. If you want to try running SourceCred on open-source projects you care about, check out our README.

(v0.4.0-6257b754e006-20200218-1853-dirty-production) v0.4.0
+ + + diff --git a/docs/prototype/@AraCred/index.html b/docs/prototype/@AraCred/index.html new file mode 100644 index 0000000..8eba18c --- /dev/null +++ b/docs/prototype/@AraCred/index.html @@ -0,0 +1,22 @@ + + + + + + + + +@AraCred • SourceCred + + + + +

what is this?feedback

SourceCred Legacy Mode

Back to timeline mode

@AraCred

Ready to load graph
(v0.4.0-6257b754e006-20200218-1853-dirty-production) v0.4.0
+ + + diff --git a/docs/prototype/index.html b/docs/prototype/index.html new file mode 100644 index 0000000..ef61074 --- /dev/null +++ b/docs/prototype/index.html @@ -0,0 +1,22 @@ + + + + + + + + +SourceCred prototype + + + + +
(v0.4.0-6257b754e006-20200218-1853-dirty-production) v0.4.0
+ + + diff --git a/docs/static/js/main.e0361f59.js b/docs/static/js/main.e0361f59.js new file mode 100644 index 0000000..04da67c --- /dev/null +++ b/docs/static/js/main.e0361f59.js @@ -0,0 +1,64 @@ +!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var n=t();for(var r in n)("object"==typeof exports?exports:e)[r]=n[r]}}(this,(function(){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=544)}([function(e,t,n){e.exports=n(263)()},function(e,t,n){"use strict";e.exports=n(254)},function(e,t,n){var r=n(40),o=n(17),i="[object AsyncFunction]",a="[object Function]",u="[object GeneratorFunction]",c="[object Proxy]";e.exports=function(e){if(!o(e))return!1;var t=r(e);return t==a||t==u||t==i||t==c}},function(e,t,n){"use strict";function r(e,t){return null!=e?t(e):e}function o(e,t){if(null==e)throw new Error(null!=t?t:String(e));return e}function i(e,t){return null!=e?e:t}n.d(t,"b",(function(){return r})),n.d(t,"a",(function(){return o})),n.d(t,"c",(function(){return i}))},function(e,t){e.exports=function(e){return null==e}},function(e,t,n){"use strict";var r=n(22),o=n.n(r),i=n(18),a=n.n(i),u=n(21),c=n.n(u),s=n(16);function l(e){const{name:t,nonce:n}=e,r=new Map(e.otherNonces||new Map),o="\0";if(-1!==n.indexOf(o))throw new Error("invalid nonce (contains NUL): ".concat(c()(n)));s.b(r,e=>{if(e===n)throw new Error("primary nonce listed as otherNonce: ".concat(c()(n)));if(-1!==e.indexOf(o))throw new Error("invalid otherNonce (contains NUL): ".concat(c()(e)));return e+o});function i(e,t){}function u(e,t){}function l(e){return[...e,""].join(o)}function f(e){return n+o+l(e)}function p(e){const t=e.split(o);return t.slice(1,t.length-1)}const h={assertValid:i,assertValidParts:u,empty:f([]),fromParts:f,toParts:p,toString:function(e){const n=p(e);return"".concat(t).concat(c()(n))},append:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;re)throw new Error("Concurrent modification detected");if(t=Number.MAX_SAFE_INTEGER)throw new Error("Graph cannot be modified more than ".concat(this._modificationCount," times."));this._modificationCount++,this._maybeCheckInvariants()}_reference(e){this._incidentEdges.has(e)||this._incidentEdges.set(e,{inEdges:[],outEdges:[]})}_unreference(e){const t=this._incidentEdges.get(e);if(null!=t){const{inEdges:n,outEdges:r}=t;this._nodes.has(e)||0!==n.length||0!==r.length||this._incidentEdges.delete(e)}}_getOrder(){const e=this._modificationCount;if(this._cachedOrder.modificationCount!==e){const t=Array.from(this._edges.keys()).sort(),n=Array.from(this._nodes.keys()).sort();this._cachedOrder={nodeOrder:n,edgeOrder:t,modificationCount:e}}return this._cachedOrder}modificationCount(){return this._modificationCount}addNode(e){const{address:t}=e;m.assertValid(t),this._reference(t);const n=this._nodes.get(t);if(null==n)this._nodes.set(t,e);else if(!o()(e,n)){const t=x(e),r=x(n);throw new Error("conflict between new node ".concat(t," and existing ").concat(r))}return this._markModification(),this._maybeCheckInvariants(),this}removeNode(e){return m.assertValid(e),this._nodes.delete(e),this._unreference(e),this._markModification(),this._maybeCheckInvariants(),this}hasNode(e){m.assertValid(e);const t=this._nodes.has(e);return this._maybeCheckInvariants(),t}node(e){m.assertValid(e);const t=this._nodes.get(e);return this._maybeCheckInvariants(),t}nodes(e){const t=null!=e?e.prefix:m.empty;if(null==t)throw new Error("Invalid prefix: ".concat(String(t)));const n=this._nodesIterator(this._modificationCount,t);return this._maybeCheckInvariants(),n}*_nodesIterator(e,t){for(const n of this._getOrder().nodeOrder)if(m.hasPrefix(n,t)){const t=p.a(this._nodes.get(n));this._checkForComodification(e),this._maybeCheckInvariants(),yield t}this._checkForComodification(e),this._maybeCheckInvariants()}addEdge(e){m.assertValid(e.src,"edge.src"),m.assertValid(e.dst,"edge.dst"),g.assertValid(e.address,"edge.address"),this._reference(e.src),this._reference(e.dst);const t=this._edges.get(e.address);if(null!=t){if(t.src!==e.src||t.dst!==e.dst||t.address!==e.address||t.timestampMs!==e.timestampMs){const n=O(e),r=O(t);throw new Error("conflict between new edge ".concat(n," and existing ").concat(r))}}else{this._edges.set(e.address,e);const{inEdges:t}=p.a(this._incidentEdges.get(e.dst)),{outEdges:n}=p.a(this._incidentEdges.get(e.src));t.push(e),n.push(e)}return this._edges.set(e.address,e),this._markModification(),this._maybeCheckInvariants(),this}removeEdge(e){g.assertValid(e);const t=this._edges.get(e);if(null!=t){this._edges.delete(e);const{inEdges:n}=p.a(this._incidentEdges.get(t.dst)),{outEdges:r}=p.a(this._incidentEdges.get(t.src));[n,r].forEach(t=>{const n=t.findIndex(t=>t.address===e);if(-1===n){const t=g.toString(e);throw new Error("Invariant violation when removing edge@".concat(t))}t.splice(n,1)}),this._unreference(t.src),this._unreference(t.dst)}return this._markModification(),this._maybeCheckInvariants(),this}hasEdge(e){g.assertValid(e);const t=this._edges.has(e);return this._maybeCheckInvariants(),t}isDanglingEdge(e){g.assertValid(e);const t=this.edge(e);let n;if(null!=t){const{src:e,dst:r}=t;n=!this.hasNode(e)||!this.hasNode(r)}return this._maybeCheckInvariants(),n}edge(e){g.assertValid(e);const t=this._edges.get(e);return this._maybeCheckInvariants(),t}edges(e){if(null==e)throw new Error("Options are required for Graph.edges");const{showDangling:t}=e,n=p.c(e.addressPrefix,g.empty),r=p.c(e.srcPrefix,m.empty),o=p.c(e.dstPrefix,m.empty),i=this._edgesIterator(this._modificationCount,t,n,r,o);return this._maybeCheckInvariants(),i}*_edgesIterator(e,t,n,r,o){for(const i of this._getOrder().edgeOrder){const a=p.a(this._edges.get(i));(t||!1===this.isDanglingEdge(a.address))&&g.hasPrefix(a.address,n)&&m.hasPrefix(a.src,r)&&m.hasPrefix(a.dst,o)&&(this._checkForComodification(e),this._maybeCheckInvariants(),yield a)}this._checkForComodification(e),this._maybeCheckInvariants()}neighbors(e,t){if(!this.hasNode(e))throw new Error("Node does not exist: ".concat(m.toString(e)));const n=this._neighbors(e,t,this._modificationCount);return this._maybeCheckInvariants(),n}*_neighbors(e,t,n){const r=e=>m.hasPrefix(e,t.nodePrefix),o=e=>g.hasPrefix(e,t.edgePrefix),i=t.direction,a=[];if(i===b.IN||i===b.ANY){const{inEdges:t}=p.a(this._incidentEdges.get(e));a.push({edges:t,direction:"IN"})}if(i===b.OUT||i===b.ANY){const{outEdges:t}=p.a(this._incidentEdges.get(e));a.push({edges:t,direction:"OUT"})}for(const e of a)for(const t of e.edges){if(i===b.ANY&&"IN"===e.direction&&t.src===t.dst)continue;const a="IN"===e.direction?t.src:t.dst,u=this.node(a);r(a)&&o(t.address)&&null!=u&&(this._checkForComodification(n),this._maybeCheckInvariants(),yield{edge:t,node:u})}this._checkForComodification(n),this._maybeCheckInvariants()}equals(e){if(!(e instanceof w))throw new Error("Expected Graph, got ".concat(String(e)));const t=o()(this._nodes,e._nodes)&&o()(this._edges,e._edges);return this._maybeCheckInvariants(),t}copy(){const e=w.merge([this]);return this._maybeCheckInvariants(),e}toJSON(){const e=Array.from(this._incidentEdges.keys()).sort(),t=new Map;e.forEach((e,n)=>{t.set(e,n)});const n=Array.from(this.edges({showDangling:!0})).map(e=>{let{src:n,dst:r,address:o,timestampMs:i}=e;return{srcIndex:p.a(t.get(n)),dstIndex:p.a(t.get(r)),address:g.toParts(o),timestampMs:i}}),r=Array.from(this.nodes()).map(e=>{let{address:n,description:r,timestampMs:o}=e;return{index:p.a(t.get(n)),description:r,timestampMs:o}}),o={sortedNodeAddresses:e.map(e=>m.toParts(e)),edges:n,nodes:r},i=Object(f.b)(v,o);return this._maybeCheckInvariants(),i}static fromJSON(e){const{nodes:t,edges:n,sortedNodeAddresses:r}=Object(f.a)(v,e),o=r.map(m.fromParts),i=new w;return t.forEach(e=>{const t={address:o[e.index],description:e.description,timestampMs:e.timestampMs};i.addNode(t)}),n.forEach(e=>{let{address:t,srcIndex:n,dstIndex:r,timestampMs:a}=e;const u=o[n],c=o[r];i.addEdge({address:g.fromParts(t),src:u,dst:c,timestampMs:a})}),i}static merge(e){const t=new w;for(const n of e){for(const e of n.nodes())t.addNode(e);for(const e of n.edges({showDangling:!0}))t.addEdge(e)}return t}contractNodes(e){const t=new Map,n=new Set,r=new w;for(const{old:o,replacement:i}of e){for(const e of o){if(n.has(e))throw new Error("Chained contractions are not supported: ".concat(m.toString(e)));t.set(e,i.address)}n.add(i.address),r.addNode(i)}for(const e of this.nodes())t.has(e.address)||r.addNode(e);for(const e of this.edges({showDangling:!0})){const n=d({},e,{src:p.c(t.get(e.src),e.src),dst:p.c(t.get(e.dst),e.dst)});r.addEdge(n)}return r}checkInvariants(){if(this._invariantsLastChecked.when!==this._modificationCount){let e=null;try{this._checkInvariants()}catch(t){e=t.message}finally{this._invariantsLastChecked={when:this._modificationCount,failure:e}}}if(null!=this._invariantsLastChecked.failure)throw new Error(this._invariantsLastChecked.failure)}_checkInvariants(){const e=new Set;for(const[t,n]of this._nodes){if(n.address!==t)throw new Error("bad node address for ".concat(m.toString(t)));if(!this._incidentEdges.has(t))throw new Error("missing incident-edges for ".concat(m.toString(t)));e.add(t)}for(const t of this._edges.values()){if(!this._incidentEdges.has(t.src))throw new Error("missing incident-edges for src of: ".concat(O(t)));if(e.add(t.src),!this._incidentEdges.has(t.dst))throw new Error("missing incident-edges for dst of: ".concat(O(t)));e.add(t.dst)}if(Array.from(this._incidentEdges.keys()).length!==e.size)throw new Error("extra addresses in incident-edges");for(const[e,t]of this._edges.entries())if(t.address!==e)throw new Error("bad edge address: ".concat(O(t)," does not match ").concat(e));const t=new Set,n=new Set,r=Array.from(this._incidentEdges.entries());for(const{seen:e,entries:i,baseNodeAccessor:a,kind:u}of[{seen:t,entries:r.map(e=>{let[t,{inEdges:n}]=e;return[t,n]}),baseNodeAccessor:e=>e.dst,kind:"in-edge"},{seen:n,entries:r.map(e=>{let[t,{outEdges:n}]=e;return[t,n]}),baseNodeAccessor:e=>e.src,kind:"out-edge"}])for(const[t,n]of i)for(const r of n){if(e.has(r.address))throw new Error("duplicate ".concat(u,": ").concat(O(r)));e.add(r.address);const n=this._edges.get(r.address);if(!o()(r,n)){if(null==n)throw new Error("spurious ".concat(u,": ").concat(O(r)));{const e="".concat(O(r)," vs. ").concat(O(n));throw new Error("bad ".concat(u,": ").concat(e))}}const i=a(r);if(t!==a(r))throw new Error("bad ".concat(u,": ").concat(O(r)," should be ")+"should be anchored at ".concat(m.toString(i)))}for(const e of this._edges.values()){if(!t.has(e.address))throw new Error("missing in-edge: ".concat(O(e)));if(!n.has(e.address))throw new Error("missing out-edge: ".concat(O(e)))}}_maybeCheckInvariants(){0}}function x(e){const t=m.toString(e.address);return"{address: ".concat(t,"}")}function O(e){const t=g.toString(e.address),n=m.toString(e.src),r=m.toString(e.dst);return"{address: ".concat(t,", src: ").concat(n,", dst: ").concat(r,", timestampMs: ").concat(e.timestampMs,"}")}},function(e,t,n){var r; +/*! + Copyright (c) 2017 Jed Watson. + Licensed under the MIT License (MIT), see + http://jedwatson.github.io/classnames +*/!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t0))return a;do{a.push(i=new Date(+n)),t(n,o),e(n)}while(i=t)for(;e(t),!n(t);)t.setTime(t-1)}),(function(e,r){if(e>=e)if(r<0)for(;++r<=0;)for(;t(e,-1),!n(e););else for(;--r>=0;)for(;t(e,1),!n(e););}))},n&&(u.count=function(t,i){return r.setTime(+t),o.setTime(+i),e(r),e(o),Math.floor(n(r,o))},u.every=function(e){return e=Math.floor(e),isFinite(e)&&e>0?e>1?u.filter(a?function(t){return a(t)%e==0}:function(t){return u.count(0,t)%e==0}):u:null}),u}},function(e,t,n){"use strict";n.d(t,"a",(function(){return h}));var r=n(1),o=n.n(r),i=n(27),a=n(13),u=n(43);function c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function s(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}class h extends r.Component{render(){const e=this.props,{styles:t,children:n}=e,r=p(e,["styles","children"]),u=Object(a.css)(y.link,t),c=this.props.className?"".concat(u," ").concat(this.props.className):u,s=e=>o.a.createElement(e,f({},r,{className:c}),n);if("to"in this.props){if(!this.props.to.endsWith("/"))throw new Error("'to' prop must specify route with trailing slash.");return s(i.b)}if("href"in this.props)return s("a");throw new Error("Must specify either 'to' or 'href'.")}}const d=e=>({color:e,fill:e}),y=a.StyleSheet.create({link:s({},d(u.a.brand.medium),{":visited":s({},d(u.a.brand.dark)),":active":s({},d(u.a.accent.medium))})})},function(e,t,n){var r=n(29),o=n(66),i=n(162),a=n(166),u=n(169),c=function(e,t,n){var s,l,f,p,h=e&c.F,d=e&c.G,y=e&c.S,m=e&c.P,g=e&c.B,v=d?r:y?r[t]||(r[t]={}):(r[t]||{}).prototype,b=d?o:o[t]||(o[t]={}),w=b.prototype||(b.prototype={});for(s in d&&(n=t),n)f=((l=!h&&v&&void 0!==v[s])?v:n)[s],p=g&&l?u(f,r):m&&"function"==typeof f?u(Function.call,f):f,v&&a(v,s,f,e&c.U),b[s]!=f&&i(b,s,p),m&&w[s]!=f&&(w[s]=f)};r.core=o,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},function(e,t,n){"use strict";n.d(t,"d",(function(){return r})),n.d(t,"c",(function(){return o})),n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return a})),n.d(t,"e",(function(){return u}));var r=1e3,o=6e4,i=36e5,a=864e5,u=6048e5},function(e,t,n){"use strict";e.exports=function(e,t,n,r,o,i,a,u){if(!e){var c;if(void 0===t)c=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var s=[n,r,o,i,a,u],l=0;(c=new Error(t.replace(/%s/g,(function(){return s[l++]})))).name="Invariant Violation"}throw c.framesToPop=1,c}}},function(e,t,n){e.exports=n(269)},function(e,t,n){"use strict";var r=n(1),o=n(260);if(void 0===r)throw Error("create-react-class could not find the React object. If you are using script tags, make sure that React is being loaded before create-react-class.");var i=(new r.Component).updater;e.exports=o(r.Component,r.isValidElement,i)},function(e,t,n){"use strict";function r(e,t){return[e,t]}function o(e,t,n){if(!Array.isArray(t)||2!==t.length)throw new Error("Tried to load object that didn't have compatibility defined");const{type:r,version:o}=t[0];let i=t[1];const{type:a,version:u}=e;if(r!==a)throw new Error("Expected type to be ".concat(a," but got ").concat(r));if(null!=n&&null!=n[o])i=n[o](i);else if(o!==u)throw new Error("".concat(r,": tried to load unsupported version ").concat(o));return i}n.d(t,"b",(function(){return r})),n.d(t,"a",(function(){return o}))},function(e,t,n){"use strict";function r(e){const t={};for(const[n,r]of e.entries())t[n]=r;return t}function o(e){const t=new Map,n=Object.keys(e);for(const r of n)t.set(r,e[r]);return t}function i(e,t){const n=new Map;for(const[r,o]of e.entries()){const e=t(r,o);if(n.has(e))throw new Error("duplicate key: "+String(e));n.set(e,o)}return n}function a(e,t){const n=new Map;for(const[r,o]of e.entries())n.set(r,t(r,o));return n}function u(e,t,n){let r=e.get(t);return null==r&&e.set(t,r=[]),r.push(n),r}n.d(t,"e",(function(){return r})),n.d(t,"a",(function(){return o})),n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return a})),n.d(t,"d",(function(){return u}))},function(e,t){e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},function(e,t){e.exports=function e(t){return Object.freeze(t),Object.getOwnPropertyNames(t).forEach((function(n){!t.hasOwnProperty(n)||null===t[n]||"object"!=typeof t[n]&&"function"!=typeof t[n]||Object.isFrozen(t[n])||e(t[n])})),t}},function(e,t,n){(function(e,n){var r=200,o="Expected a function",i="__lodash_hash_undefined__",a=1,u=2,c=1/0,s=9007199254740991,l="[object Arguments]",f="[object Array]",p="[object Boolean]",h="[object Date]",d="[object Error]",y="[object Function]",m="[object GeneratorFunction]",g="[object Map]",v="[object Number]",b="[object Object]",w="[object RegExp]",x="[object Set]",O="[object String]",E="[object Symbol]",_="[object ArrayBuffer]",k="[object DataView]",S=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,j=/^\w*$/,T=/^\./,P=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,A=/\\(\\)?/g,C=/^\[object .+?Constructor\]$/,M=/^(?:0|[1-9]\d*)$/,N={};N["[object Float32Array]"]=N["[object Float64Array]"]=N["[object Int8Array]"]=N["[object Int16Array]"]=N["[object Int32Array]"]=N["[object Uint8Array]"]=N["[object Uint8ClampedArray]"]=N["[object Uint16Array]"]=N["[object Uint32Array]"]=!0,N[l]=N[f]=N[_]=N[p]=N[k]=N[h]=N[d]=N[y]=N[g]=N[v]=N[b]=N[w]=N[x]=N[O]=N["[object WeakMap]"]=!1;var I="object"==typeof e&&e&&e.Object===Object&&e,D="object"==typeof self&&self&&self.Object===Object&&self,R=I||D||Function("return this")(),L=t&&!t.nodeType&&t,F=L&&"object"==typeof n&&n&&!n.nodeType&&n,z=F&&F.exports===L&&I.process,U=function(){try{return z&&z.binding("util")}catch(e){}}(),B=U&&U.isTypedArray;function W(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function H(e,t){for(var n=-1,r=e?e.length:0,o=Array(r);++n-1},Ae.prototype.set=function(e,t){var n=this.__data__,r=De(n,e);return r<0?n.push([e,t]):n[r][1]=t,this},Ce.prototype.clear=function(){this.__data__={hash:new Pe,map:new(me||Ae),string:new Pe}},Ce.prototype.delete=function(e){return Xe(this,e).delete(e)},Ce.prototype.get=function(e){return Xe(this,e).get(e)},Ce.prototype.has=function(e){return Xe(this,e).has(e)},Ce.prototype.set=function(e,t){return Xe(this,e).set(e,t),this},Me.prototype.add=Me.prototype.push=function(e){return this.__data__.set(e,i),this},Me.prototype.has=function(e){return this.__data__.has(e)},Ne.prototype.clear=function(){this.__data__=new Ae},Ne.prototype.delete=function(e){return this.__data__.delete(e)},Ne.prototype.get=function(e){return this.__data__.get(e)},Ne.prototype.has=function(e){return this.__data__.has(e)},Ne.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Ae){var o=n.__data__;if(!me||o.length=u)return c;var s=n[r];return c*("desc"==s?-1:1)}}return e.index-t.index}(e,t,n)}))}function Ye(e){return pt(e)?e:it(e)}function $e(e,t){if(e!==t){var n=void 0!==e,r=null===e,o=e==e,i=vt(e),a=void 0!==t,u=null===t,c=t==t,s=vt(t);if(!u&&!s&&!i&&e>t||i&&a&&c&&!u&&!s||r&&a&&c||!n&&c||!o)return 1;if(!r&&!i&&!s&&es))return!1;var f=i.get(e);if(f&&i.get(t))return f==t;var p=-1,h=!0,d=o&a?new Me:void 0;for(i.set(e,t),i.set(t,e);++p-1&&e%1==0&&e1&&tt(e,t[0],t[1])?t=[]:n>2&&tt(t[0],t[1],t[2])&&(t=[t[0]]),Ve(e,function e(t,n,r,o,i){var a=-1,u=t.length;for(r||(r=Ze),i||(i=[]);++a0&&r(c)?n>1?e(c,n-1,r,o,i):G(i,c):o||(i[i.length]=c)}return i}(t,1),[])}));function st(e,t){if("function"!=typeof e||t&&"function"!=typeof t)throw new TypeError(o);var n=function(){var r=arguments,o=t?t.apply(this,r):r[0],i=n.cache;if(i.has(o))return i.get(o);var a=e.apply(this,r);return n.cache=i.set(o,a),a};return n.cache=new(st.Cache||Ce),n}function lt(e,t){return e===t||e!=e&&t!=t}function ft(e){return function(e){return gt(e)&&ht(e)}(e)&&ie.call(e,"callee")&&(!le.call(e,"callee")||ae.call(e)==l)}st.Cache=Ce;var pt=Array.isArray;function ht(e){return null!=e&&yt(e.length)&&!dt(e)}function dt(e){var t=mt(e)?ae.call(e):"";return t==y||t==m}function yt(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=s}function mt(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function gt(e){return!!e&&"object"==typeof e}function vt(e){return"symbol"==typeof e||gt(e)&&ae.call(e)==E}var bt=B?V(B):function(e){return gt(e)&&yt(e.length)&&!!N[ae.call(e)]};function wt(e){return ht(e)?Ie(e):qe(e)}function xt(e){return e}n.exports=ct}).call(this,n(46),n(81)(e))},function(e,t,n){"use strict";n.d(t,"b",(function(){return a})),n.d(t,"a",(function(){return u})),n.d(t,"d",(function(){return c})),n.d(t,"e",(function(){return s})),n.d(t,"c",(function(){return l}));var r=n(16),o=n(5),i=n(15);function a(){return{nodeWeights:new Map,edgeWeights:new Map}}function u(e){return{nodeWeights:new Map(e.nodeWeights),edgeWeights:new Map(e.edgeWeights)}}function c(e,t){if(null==t){t={nodeResolver:(e,t)=>{throw new Error("node weight conflict detected, but no resolver specified")},edgeResolver:(e,t)=>{throw new Error("edge weight conflict detected, but no resolver specified")}}}const n=a(),{nodeWeights:r,edgeWeights:i}=n,{nodeResolver:u,edgeResolver:c}=t;for(const t of e){for(const[e,n]of t.nodeWeights.entries()){const t=r.get(e);if(null==t)r.set(e,n);else try{r.set(e,u(t,n))}catch(t){throw new Error("".concat(t," when resolving ").concat(o.c.toString(e)))}}for(const[e,n]of t.edgeWeights.entries()){const t=i.get(e);if(null==t)i.set(e,n);else try{i.set(e,c(t,n))}catch(t){throw new Error("Error ".concat(t," when resolving ").concat(o.a.toString(e)))}}}return n}function s(e){return Object(i.b)(f,{nodeWeights:r.e(e.nodeWeights),edgeWeights:r.e(e.edgeWeights)})}function l(e){const{nodeWeights:t,edgeWeights:n}=Object(i.a)(f,e);return{nodeWeights:r.a(t),edgeWeights:r.a(n)}}const f={type:"sourcecred/weights",version:"0.2.0"}},function(e,t,n){var r="undefined"!=typeof JSON?JSON:n(273);e.exports=function(e,t){t||(t={}),"function"==typeof t&&(t={cmp:t});var n=t.space||"";"number"==typeof n&&(n=Array(n+1).join(" "));var a,u="boolean"==typeof t.cycles&&t.cycles,c=t.replacer||function(e,t){return t},s=t.cmp&&(a=t.cmp,function(e){return function(t,n){var r={key:t,value:e[t]},o={key:n,value:e[n]};return a(r,o)}}),l=[];return function e(t,a,f,p){var h=n?"\n"+new Array(p+1).join(n):"",d=n?": ":":";if(f&&f.toJSON&&"function"==typeof f.toJSON&&(f=f.toJSON()),void 0!==(f=c.call(t,a,f))){if("object"!=typeof f||null===f)return r.stringify(f);if(o(f)){for(var y=[],m=0;ms))return!1;var f=u.get(e);if(f&&u.get(t))return f==t;var p=-1,h=!0,d=n&a?new Se:void 0;for(u.set(e,t),u.set(t,e);++p-1},_e.prototype.set=function(e,t){var n=this.__data__,r=Pe(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},ke.prototype.clear=function(){this.size=0,this.__data__={hash:new Ee,map:new(fe||_e),string:new Ee}},ke.prototype.delete=function(e){var t=Le(this,e).delete(e);return this.size-=t?1:0,t},ke.prototype.get=function(e){return Le(this,e).get(e)},ke.prototype.has=function(e){return Le(this,e).has(e)},ke.prototype.set=function(e,t){var n=Le(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Se.prototype.add=Se.prototype.push=function(e){return this.__data__.set(e,o),this},Se.prototype.has=function(e){return this.__data__.has(e)},je.prototype.clear=function(){this.__data__=new _e,this.size=0},je.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},je.prototype.get=function(e){return this.__data__.get(e)},je.prototype.has=function(e){return this.__data__.has(e)},je.prototype.set=function(e,t){var n=this.__data__;if(n instanceof _e){var o=n.__data__;if(!fe||o.length-1&&e%1==0&&e-1&&e%1==0&&e<=u}function Ke(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function Xe(e){return null!=e&&"object"==typeof e}var Je=z?function(e){return function(t){return e(t)}}(z):function(e){return Xe(e)&&$e(e.length)&&!!A[Ae(e)]};function Qe(e){return null!=(t=e)&&$e(t.length)&&!Ye(t)?Te(e):Ie(e);var t}n.exports=function(e,t){return Me(e,t)}}).call(this,n(46),n(81)(e))},function(e,t,n){"use strict";e.exports=function(e){return o.test("number"==typeof e?r(e):e.charAt(0))};var r=String.fromCharCode,o=/\s/},function(e,t,n){var r=n(176),o="object"==typeof self&&self&&self.Object===Object&&self,i=r||o||Function("return this")();e.exports=i},function(e,t,n){"use strict";var r=n(42);t.a=function(e){return(e=Object(r.a)(Math.abs(e)))?e[1]:NaN}},function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return a})),n.d(t,"c",(function(){return u})),n.d(t,"f",(function(){return c})),n.d(t,"e",(function(){return s})),n.d(t,"d",(function(){return l}));var r=n(1),o=n.n(r);const i=-5,a=5;class u extends o.a.Component{render(){return o.a.createElement("label",{style:{display:"flex"},title:this.props.description},o.a.createElement("span",{style:{flexGrow:1}},this.props.name),o.a.createElement("input",{type:"range",min:i,max:a,step:1,value:c(this.props.weight),onChange:e=>{const t=s(e.target.valueAsNumber);this.props.onChange(t)}})," ",o.a.createElement("span",{style:{minWidth:45,display:"inline-block",textAlign:"right"}},l(this.props.weight)))}}function c(e){if(!isFinite(e)||e<0)throw new Error("illegal weight: ".concat(e));const t=Math.log2(e);return ta?a:Math.round(t)}function s(e){if(ea)throw new Error("Slider position out of range: ".concat(e));if(isNaN(e))throw new Error("illegal value: NaN");if(Math.round(e)!==e)throw new Error("slider position not integer: ".concat(e));return e===i?0:2**e}function l(e){if(e<0||!isFinite(e))throw new Error("Invalid weight: ".concat(e));return e>=1||0===e?e.toFixed(0)+"×":"1/".concat((1/e).toFixed(0),"×")}},function(e,t,n){"use strict";var r=n(12),o=n.n(r),i=n(1),a=n.n(i),u=n(14),c=n.n(u),s=n(0),l=n.n(s);n(31);function f(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}var p=Object.create(null);function h(e){return p[e]||(p[e]=function(e){for(var t="",n=[],r=[],o=void 0,i=0,a=/:([a-zA-Z_$][a-zA-Z0-9_$]*)|\*\*|\*|\(|\)|\\\(|\\\)/g;o=a.exec(e);)o.index!==i&&(r.push(e.slice(i,o.index)),t+=f(e.slice(i,o.index))),o[1]?(t+="([^/]+)",n.push(o[1])):"**"===o[0]?(t+="(.*)",n.push("splat")):"*"===o[0]?(t+="(.*?)",n.push("splat")):"("===o[0]?t+="(?:":")"===o[0]?t+=")?":"\\("===o[0]?t+="\\(":"\\)"===o[0]&&(t+="\\)"),r.push(o[0]),i=a.lastIndex;return i!==e.length&&(r.push(e.slice(i,e.length)),t+=f(e.slice(i,e.length))),{pattern:e,regexpSource:t,paramNames:n,tokens:r}}(e)),p[e]}function d(e,t){"/"!==e.charAt(0)&&(e="/"+e);var n=h(e),r=n.regexpSource,o=n.paramNames,i=n.tokens;"/"!==e.charAt(e.length-1)&&(r+="/?"),"*"===i[i.length-1]&&(r+="$");var a=t.match(new RegExp("^"+r,"i"));if(null==a)return null;var u=a[0],c=t.substr(u.length);if(c){if("/"!==u.charAt(u.length-1))return null;c="/"+c}return{remainingPathname:c,paramNames:o,paramValues:a.slice(1).map((function(e){return e&&decodeURIComponent(e)}))}}function y(e){return h(e).paramNames}function m(e,t){t=t||{};for(var n=h(e).tokens,r=0,i="",a=0,u=[],c=void 0,s=void 0,l=0,f=n.length;l0||o()(!1),null!=s&&(i+=encodeURI(s));else if("("===c)u[r]="",r+=1;else if(")"===c){var p=u.pop();(r-=1)?u[r-1]+=p:i+=p}else if("\\("===c)i+="(";else if("\\)"===c)i+=")";else if(":"===c.charAt(0))if(null!=(s=t[c.substring(1)])||r>0||o()(!1),null==s){if(r){u[r-1]="";for(var d=n.indexOf(c),y=n.slice(d,n.length),m=-1,g=0;g0||o()(!1),l=d+m-1}}else r?u[r-1]+=encodeURIComponent(s):i+=encodeURIComponent(s);else r?u[r-1]+=c:i+=c;return r<=0||o()(!1),i.replace(/\/+/g,"/")}var g=function(e,t){var n=e&&e.routes,r=t.routes,o=void 0,i=void 0,a=void 0;if(n){var u=!1;(o=n.filter((function(n){if(u)return!0;var o=-1===r.indexOf(n)||function(e,t,n){return!!e.path&&y(e.path).some((function(e){return t.params[e]!==n.params[e]}))}(n,e,t);return o&&(u=!0),o}))).reverse(),a=[],i=[],r.forEach((function(e){var t=-1===n.indexOf(e),r=-1!==o.indexOf(e);t||r?a.push(e):i.push(e)}))}else o=[],i=[],a=r;return{leaveRoutes:o,changeRoutes:i,enterRoutes:a}};function v(e,t,n){var r=0,o=!1,i=!1,a=!1,u=void 0;function c(){o=!0,i?u=[].concat(Array.prototype.slice.call(arguments)):n.apply(this,arguments)}!function s(){if(!o&&(a=!0,!i)){for(i=!0;!o&&r=e&&a&&(o=!0,n())}}()}function b(e,t,n){var r=e.length,o=[];if(0===r)return n(null,o);var i=!1,a=0;e.forEach((function(e,u){t(e,u,(function(e,t){!function(e,t,u){i||(t?(i=!0,n(t)):(o[e]=u,(i=++a===r)&&n(null,o)))}(u,e,t)}))}))}var w=function e(){var t=this;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.hooks=[],this.add=function(e){return t.hooks.push(e)},this.remove=function(e){return t.hooks=t.hooks.filter((function(t){return t!==e}))},this.has=function(e){return-1!==t.hooks.indexOf(e)},this.clear=function(){return t.hooks=[]}};function x(){var e=new w,t=new w;function n(e,t,n,r){var o=e.length4&&void 0!==arguments[4]?arguments[4]:[],i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:[];void 0===r&&("/"!==t.pathname.charAt(0)&&(t=N({},t,{pathname:"/"+t.pathname})),r=t.pathname),v(e.length,(function(n,a,u){R(e[n],t,r,o,i,(function(e,t){e||t?u(e,t):a()}))}),n)}var F=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]&&arguments[1];return e.__id__||t&&(e.__id__=l++)}var p=Object.create(null);function h(e){return e.map((function(e){return p[f(e)]})).filter((function(e){return e}))}function d(e,r){L(t,e,(function(t,o){if(null!=o){u=F({},o,{location:e});for(var i=h(g(n,u).leaveRoutes),a=void 0,c=0,s=i.length;null==a&&c should not have a "'+t+'" prop')}Object(s.shape)({listen:s.func.isRequired,push:s.func.isRequired,replace:s.func.isRequired,go:s.func.isRequired,goBack:s.func.isRequired,goForward:s.func.isRequired});var W=s.elementType,H=Object(s.oneOfType)([W,s.object]),G=Object(s.oneOfType)([s.object,s.element]),q=Object(s.oneOfType)([G,Object(s.arrayOf)(G)]),V=n(138);var Y=function(e,t){var n={};return e.path?(y(e.path).forEach((function(e){Object.prototype.hasOwnProperty.call(t,e)&&(n[e]=t[e])})),n):n},$=l.a.shape({subscribe:l.a.func.isRequired,eventIndex:l.a.number.isRequired});function K(e){return"@@contextSubscriber/"+e}var X=void 0!==a.a.forwardRef;function J(e){var t,n,r=K(e),o=r+"/lastRenderedEventIndex",i=r+"/handleContextUpdate",a=r+"/unsubscribe",u=((n={contextTypes:(t={},t[r]=$,t),getInitialState:function(){var e;return this.context[r]?((e={})[o]=this.context[r].eventIndex,e):{}},componentDidMount:function(){this.context[r]&&(this[a]=this.context[r].subscribe(this[i]))},componentWillReceiveProps:function(){var e;this.context[r]&&this.setState(((e={})[o]=this.context[r].eventIndex,e))},componentWillUnmount:function(){this[a]&&(this[a](),this[a]=null)}})[i]=function(e){var t;e!==this.state[o]&&this.setState(((t={})[o]=e,t))},n);return X&&(u.UNSAFE_componentWillReceiveProps=u.componentWillReceiveProps,delete u.componentWillReceiveProps),u}var Q,Z,ee,te,ne,re,oe,ie,ae=Object.assign||function(e){for(var t=1;t=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(i,["createElement","render"]);return null==t?null:(Object.keys(he).forEach((function(e){return delete c[e]})),u(pe({},c,{router:this.router,location:t,routes:n,params:r,components:o,createElement:a})))}});de&&(ye.prototype.UNSAFE_componentWillReceiveProps=ye.prototype.componentWillReceiveProps,ye.prototype.UNSAFE_componentWillMount=ye.prototype.componentWillMount,delete ye.prototype.componentWillReceiveProps,delete ye.prototype.componentWillMount);var me=ye,ge=Object(s.shape)({push:s.func.isRequired,replace:s.func.isRequired,go:s.func.isRequired,goBack:s.func.isRequired,goForward:s.func.isRequired,setRouteLeaveHook:s.func.isRequired,isActive:s.func.isRequired}),ve=(Object(s.shape)({pathname:s.string.isRequired,search:s.string.isRequired,state:s.object,action:s.string.isRequired,key:s.string}),Object.assign||function(e){for(var t=1;t=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["to","activeClassName","activeStyle","onlyActiveOnIndex","innerRef"]),c=this.context.router;if(c){if(!t)return a.a.createElement("a",ve({},u,{ref:i}));var s=be(t,c);u.href=c.createHref(s),(n||null!=r&&!function(e){for(var t in e)if(Object.prototype.hasOwnProperty.call(e,t))return!1;return!0}(r))&&c.isActive(s,o)&&(n&&(u.className?u.className+=" "+n:u.className=n),r&&(u.style=ve({},u.style,r)))}return a.a.createElement("a",ve({},u,{onClick:this.handleClick,ref:i}))}}),xe=Object.assign||function(e){for(var t=1;t=0;r--){var o=e[r].path||"";if(n=o.replace(/\/*$/,"/")+n,0===o.indexOf("/"))break}return"/"+n}},propTypes:{path:s.string,from:s.string,to:s.string.isRequired,query:s.object,state:s.object,onEnter:B,children:B},render:function(){o()(!1)}}),Ee=Oe,_e=(c()({displayName:"IndexRedirect",statics:{createRouteFromReactElement:function(e,t){t&&(t.indexRoute=Ee.createRouteFromReactElement(e))}},propTypes:{to:s.string.isRequired,query:s.object,state:s.object,onEnter:B,children:B},render:function(){o()(!1)}}),c()({displayName:"IndexRoute",statics:{createRouteFromReactElement:function(e,t){t&&(t.indexRoute=A(e))}},propTypes:{path:B,component:W,components:H,getComponent:s.func,getComponents:s.func},render:function(){o()(!1)}})),ke=c()({displayName:"Route",statics:{createRouteFromReactElement:A},propTypes:{path:s.string,component:W,components:H,getComponent:s.func,getComponents:s.func},render:function(){o()(!1)}}),Se=n(69),je=n(95),Te=n.n(je),Pe=n(96),Ae=n.n(Pe),Ce=n(140),Me=n.n(Ce);var Ne=Object.assign||function(e){for(var t=1;t=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["history","routes","location"]);n||i||o()(!1);var u=U(n=n||function(e){var t=Me()(e);return Te()(Ae()((function(){return t})))(e)}(a),M(r));i=i?n.createLocation(i):n.getCurrentLocation(),u.match(i,(function(e,r,o){var i=void 0;if(o){var a=le(n,u,o);i=Ne({},o,{router:a,matchContext:{transitionManager:u,router:a}})}t(e,r&&n.createLocation(r,Se.REPLACE),i)}))};Object.assign;var De=n(139),Re=n.n(De),Le=!("undefined"==typeof window||!window.document||!window.document.createElement);function Fe(e){var t=void 0;return Le&&(t=function(e){return function(t){return Te()(Ae()(e))(t)}}(e)()),t}Fe(Re.a);var ze=n(210);Fe(n.n(ze).a);n.d(t,"d",(function(){return me})),n.d(t,"b",(function(){return we})),n.d(t,"a",(function(){return _e})),n.d(t,"c",(function(){return ke})),n.d(t,"e",(function(){return ce})),n.d(t,"f",(function(){return Ie}))},function(e,t){e.exports=function(){for(var e={},t=0;t{n.set(e,t)}),{nodeOrder:t,chain:t.map(t=>{const r=o.a(e.get(t)),i={neighbor:new Uint32Array(r.size),weight:new Float64Array(r.size)};let a=0;for(const[e,t]of r.entries()){const r=o.a(n.get(e));i.neighbor[a]=r,i.weight[a]=t,a++}return i})}}((t=e,r.c(t,(e,t)=>{const n=new Map;for(const r of t){const t=i(e,r.adjacency);n.set(t,r.weight+o.c(n.get(t),0))}return n})))}function c(e,t){const n=new Map;return e.forEach((e,r)=>{const o=t[r];n.set(e,o)}),n}},function(e,t,n){var r=n(40),o=n(7),i=n(36),a="[object String]";e.exports=function(e){return"string"==typeof e||!o(e)&&i(e)&&r(e)==a}},function(e,t,n){"use strict";t.__esModule=!0,t.createPath=t.parsePath=t.getQueryStringValueFromPath=t.stripQueryStringValueFromPath=t.addQueryStringValueToPath=void 0;var r,o=n(31);(r=o)&&r.__esModule;t.addQueryStringValueToPath=function(e,t,n){var r=i(e),o=r.pathname,u=r.search,c=r.hash;return a({pathname:o,search:u+(-1===u.indexOf("?")?"?":"&")+t+"="+n,hash:c})},t.stripQueryStringValueFromPath=function(e,t){var n=i(e),r=n.pathname,o=n.search,u=n.hash;return a({pathname:r,search:o.replace(new RegExp("([?&])"+t+"=[a-zA-Z0-9]+(&?)"),(function(e,t,n){return"?"===t?t:n})),hash:u})},t.getQueryStringValueFromPath=function(e,t){var n=i(e).search.match(new RegExp("[?&]"+t+"=([a-zA-Z0-9]+)"));return n&&n[1]};var i=t.parsePath=function(e){var t,n,r=null==(n=(t=e).match(/^(https?:)?\/\/[^\/]*/))?t:t.substring(n[0].length),o="",i="",a=r.indexOf("#");-1!==a&&(i=r.substring(a),r=r.substring(0,a));var u=r.indexOf("?");return-1!==u&&(o=r.substring(u),r=r.substring(0,u)),""===r&&(r="/"),{pathname:r,search:o,hash:i}},a=t.createPath=function(e){if(null==e||"string"==typeof e)return e;var t=e.basename,n=e.pathname,r=e.search,o=e.hash,i=(t||"")+n;return r&&"?"!==r&&(i+=r),o&&(i+=o),i}},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){e.exports=function(e){return null!=e&&"object"==typeof e}},function(e,t,n){"use strict";var r=n(546),o=n(19),i=n.n(o),a=n(3),u=n(16),c=n(15),s=n(18),l=n.n(s),f=n(5);var p=n(545);function h(e){const t=Array.from(e.nodes()).filter(e=>null!=e.timestampMs),n=i()(t,e=>e.timestampMs),r=Array.from(e.edges({showDangling:!1})),o=i()(r,e=>e.timestampMs),u=function(e){const t=Array.from(e.nodes()).map(e=>e.timestampMs).filter(e=>null!=e).map(e=>a.a(e)),n=Array.from(e.edges({showDangling:!1})).map(e=>e.timestampMs);if(0===t.length&&0===n.length)return[];const r=t.concat(n),o=function(e,t){let n;if(void 0===t)for(const t of e)null!=t&&(n>t||void 0===n&&t>=t)&&(n=t);else{let r=-1;for(let o of e)null!=(o=t(o,++r,e))&&(n>o||void 0===n&&o>=o)&&(n=o)}return n}(r),i=function(e,t){let n;if(void 0===t)for(const t of e)null!=t&&(n=t)&&(n=t);else{let r=-1;for(let o of e)null!=(o=t(o,++r,e))&&(n=o)&&(n=o)}return n}(r);return function(e,t){if(!isFinite(e)||!isFinite(t))throw new Error("invalid non-finite input");if("number"!=typeof e||"number"!=typeof t)throw new Error("start or end are not numbers");if(e>t)throw new Error("start time after end time");e=p.b.floor(e),t=p.b.ceil(t+1);const n=p.b.range(e,t);n.push(t);const r=[];for(let e=0;e{const t=[],r=[];for(;c1||!isFinite(t))throw new Error("invalid intervalDecay: ".concat(t));if(n<0||n>1||!isFinite(n))throw new Error("invalid alpha: ".concat(n));const o=Object(d.b)(e.weights),i=Object(d.a)(e.weights),u=h(e.graph);if(0===u.length)return[];const c=u.map(e=>e.interval),s=u.map(e=>e.nodes),f=u.map(e=>e.edges);return async function(e,t,n,o,i){const u=[];let c=null;for(const s of t){const t=a.a(n.next().value),l=a.a(o.next().value),f=m(e,t);null==c&&(c=f);const p={chain:l,alpha:i,seed:f,pi0:c},h=await Object(v.a)(p,{verbose:!1,convergenceThreshold:1e-7,maxIterations:255,yieldAfterMs:30}),d=Object(r.a)(t.values());u.push({interval:s,intervalWeight:d,distribution:h.pi}),c=h.pi}return u}(Array.from(e.graph.nodes()).map(e=>e.address),c,function*(e,t,n){let r=new Map;for(const o of e){const e=new Map;for(const[t,o]of r.entries())e.set(t,o*n);for(const{address:r}of o){const o=t(r)*(1-n);e.set(r,o)}yield e,r=e}}(s,o,t),function*(e,t,n,r){const o=new Map;for(const i of t){for(const[e,{forwards:t,backwards:n}]of o.entries())o.set(e,{forwards:t*r,backwards:n*r});for(const{address:e}of i)o.set(e,n(e));const t=l()({forwards:0,backwards:0}),u=e=>a.c(o.get(e.address),t),c=Object(g.c)(Object(g.b)(e,u,.001)).chain;yield c}}(e.graph,f,i,t),n)}var w=n(61),x=n(44);function O(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}n.d(t,"a",(function(){return E}));class E{constructor(e,t,n,r,o){O(this,"_weightedGraph",void 0),O(this,"_intervals",void 0),O(this,"_addressToCred",void 0),O(this,"_params",void 0),O(this,"_plugins",void 0),this._weightedGraph=e,this._intervals=t,this._addressToCred=n,this._params=r,this._plugins=o}weightedGraph(){return this._weightedGraph}params(){return this._params}async reanalyze(e,t){return await E.compute({weightedGraph:w.c(this._weightedGraph,e),params:t,plugins:this._plugins})}intervals(){return this._intervals}credNode(e){const t=this._addressToCred.get(e);if(void 0!==t)return{cred:t,total:Object(r.a)(t),node:a.a(this._weightedGraph.graph.node(e))}}credSortedNodes(e){let t=Array.from(this._addressToCred.keys());if(null!=e){const n=t=>e.some(e=>f.c.hasPrefix(t,e));t=t.filter(n)}const n=t.map(e=>this.credNode(e));return i()(n,e=>-e.total)}userNodes(){const e=[].concat(...this._plugins.map(e=>e.userTypes));return this.credSortedNodes(e.map(e=>e.prefix))}toJSON(){const e={weightedGraphJSON:w.d(this._weightedGraph),intervalsJSON:this._intervals,credJSON:u.e(this._addressToCred),paramsJSON:Object(x.c)(this._params),pluginsJSON:this._plugins};return Object(c.b)(_,e)}static fromJSON(e){const t=Object(c.a)(_,e),{weightedGraphJSON:n,intervalsJSON:r,credJSON:o,paramsJSON:i,pluginsJSON:a}=t,s=u.a(o),l=w.b(n),f=Object(x.b)(i);return new E(l,r,s,f,a)}static async compute(e){const{weightedGraph:t,params:n,plugins:o}=e,{graph:i}=t,a=null==n?Object(x.a)():Object(x.d)(n),u=Array.from(i.nodes()).map(e=>e.address),c=[].concat(...o.map(e=>e.userTypes)).map(e=>e.prefix),s=function(e,t,n){if(0===e.length)return{intervals:[],intervalCredScores:[]};const o=[];for(let e=0;ef.c.hasPrefix(r,e))&&o.push(e)}const i=e.map(e=>e.interval);return{intervalCredScores:e.map(e=>{let{distribution:t,intervalWeight:n}=e;const i=Object(r.a)(o.map(e=>t[e])),a=0===i?0:n/i;return t.map(e=>e*a)}),intervals:i}}(await b(t,a.intervalDecay,a.alpha),u,c),l=new Map;for(let e=0;et[e]);l.set(t,n)}return new E(t,s.intervals,l,a,o)}}const _={type:"sourcecred/timelineCred",version:"0.6.0"}},function(e,t,n){"use strict";function r(e){if(isNaN(e)||!isFinite(e)||e!==Math.floor(e)||e<=0)throw new Error("expected positive integer, but got: "+e);return new Float64Array(e).fill(1/e)}function o(e,t){if(0===e.length||e.length!==t.length)throw new Error("invalid input");let n=-1/0;return e.forEach((e,r)=>{const o=Math.abs(e-t[r]);n=Math.max(o,n)}),n}n.d(t,"b",(function(){return r})),n.d(t,"a",(function(){return o}))},function(e,t,n){(function(t){for(var r=n(479),o="undefined"==typeof window?t:window,i=["moz","webkit"],a="AnimationFrame",u=o["request"+a],c=o["cancel"+a]||o["cancelRequest"+a],s=0;!u&&s1?r[0]+r.slice(2):r,+e.slice(n+1)]}},function(e,t,n){"use strict";var r=n(18),o=n.n(r);t.a=o()({brand:{medium:"#0872A2",dark:"#3A066A"},accent:{medium:"#FF3201"}})},function(e,t,n){"use strict";function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}n.d(t,"c",(function(){return u})),n.d(t,"b",(function(){return c})),n.d(t,"a",(function(){return s})),n.d(t,"d",(function(){return l}));const i=.2,a=.5;function u(e){return{alpha:e.alpha,intervalDecay:e.intervalDecay}}function c(e){return{alpha:e.alpha,intervalDecay:e.intervalDecay}}function s(){return{alpha:i,intervalDecay:a}}function l(e){return function(e){for(var t=1;t2){const r=u.lastIndexOf(n);if(r!==u.length-1){-1===r?(u="",c=0):(u=u.slice(0,r),c=u.length-1-u.lastIndexOf(n)),s=f,l=0;continue}throw new Error("normalize: invariant violation: "+JSON.stringify({path:e,allowAboveRoot:t,separator:n}))}if(2===u.length||1===u.length){u="",c=0,s=f,l=0;continue}}t&&(u.length>0?u+="".concat(n,".."):u="..",c=2)}else u.length>0?u+=n+e.slice(s+1,f):u=e.slice(s+1,f),c=f-s-1;s=f,l=0}else a===o&&-1!==l?++l:l=-1}return u}(e,!t,"/",a)).length||t||(e="."),e.length>0&&n&&(e+="/"),t?"/"+e:e}n.d(t,"a",(function(){return r}));const o=46,i=47;function a(e){return e===i}},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";t.__esModule=!0,t.locationsAreEqual=t.statesAreEqual=t.createLocation=t.createQuery=void 0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:"/",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:u.POP,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r="string"==typeof e?(0,a.parsePath)(e):e,o=r.pathname||"/",i=r.search||"",c=r.hash||"",s=r.state;return{pathname:o,search:i,hash:c,state:s,action:t,key:n}};var s=function(e){return"[object Date]"===Object.prototype.toString.call(e)},l=t.statesAreEqual=function e(t,n){if(t===n)return!0;var o=void 0===t?"undefined":r(t);if(o!==(void 0===n?"undefined":r(n)))return!1;if("function"===o&&(0,i.default)(!1),"object"===o){if(s(t)&&s(n)&&(0,i.default)(!1),!Array.isArray(t)){var a=Object.keys(t),u=Object.keys(n);return a.length===u.length&&a.every((function(r){return e(t[r],n[r])}))}return Array.isArray(n)&&t.length===n.length&&t.every((function(t,r){return e(t,n[r])}))}return!1};t.locationsAreEqual=function(e,t){return e.key===t.key&&e.pathname===t.pathname&&e.search===t.search&&e.hash===t.hash&&l(e.state,t.state)}},function(e,t){(t=e.exports=function(e){return e.replace(/^\s*|\s*$/g,"")}).left=function(e){return e.replace(/^\s*/,"")},t.right=function(e){return e.replace(/\s*$/,"")}},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){e.exports=!n(35)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(e,t,n){var r=n(2),o=n(134);e.exports=function(e){return null!=e&&o(e.length)&&!r(e)}},function(e,t,n){var r=n(40),o=n(36),i="[object Symbol]";e.exports=function(e){return"symbol"==typeof e||o(e)&&r(e)==i}},function(e,t){e.exports=function(e){return e}},function(e,t,n){"use strict";function r(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t0&&t.push(l.ofType(n,r));e.allowNode&&t.push(l.ifNotMatch(e.allowNode,r));var o=!e.escapeHtml&&!e.skipHtml,i=(e.astPlugins||[]).some((function(e){return(Array.isArray(e)?e[0]:e).identity===m.HtmlParser}));o&&!i&&t.push(s);return e.astPlugins?t.concat(e.astPlugins):t}(e),x=u.runSync(d),O=w.reduce((function(e,t){return t(e,v)}),x);return f(O,v)};function b(e,t){return Array.isArray(t)?e.use.apply(e,r(t)):e.use(t)}v.defaultProps={renderers:{},escapeHtml:!0,skipHtml:!1,sourcePos:!1,rawSourcePos:!1,transformLinkUri:d,astPlugins:[],plugins:[],parserOptions:{}},v.propTypes={className:u.string,source:u.string,children:u.string,sourcePos:u.bool,rawSourcePos:u.bool,escapeHtml:u.bool,skipHtml:u.bool,allowNode:u.func,allowedTypes:u.arrayOf(u.oneOf(g)),disallowedTypes:u.arrayOf(u.oneOf(g)),transformLinkUri:u.oneOfType([u.func,u.bool]),linkTarget:u.oneOfType([u.func,u.string]),transformImageUri:u.func,astPlugins:u.arrayOf(u.func),unwrapDisallowed:u.bool,renderers:u.object,plugins:u.array,parserOptions:u.object},v.types=g,v.renderers=y,v.uriTransformer=d,e.exports=v},function(e,t,n){var r=n(188);e.exports=function(e,t,n){var o=null==e?void 0:r(e,t);return void 0===o?n:o}},function(e,t,n){var r=n(40),o=n(36),i="[object Number]";e.exports=function(e){return"number"==typeof e||o(e)&&r(e)==i}},function(e,t,n){var r=n(128);e.exports=function(e,t){return r(e,t)}},function(e,t,n){var r=n(200),o=n(501),i=n(193),a=n(94),u=i((function(e,t){if(null==e)return[];var n=t.length;return n>1&&a(e,t[0],t[1])?t=[]:n>2&&a(t[0],t[1],t[2])&&(t=[t[0]]),o(e,r(t,1),[])}));e.exports=u},function(e,t,n){"use strict";n.d(t,"b",(function(){return c})),n.d(t,"a",(function(){return s}));var r=n(5),o=n(3);function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}const a=Symbol("EMPTY");class u{constructor(e){i(this,"addressModule",void 0),i(this,"entry",void 0),this.addressModule=e,this.entry={value:a,map:new Map}}add(e,t){const n=this.addressModule.toParts(e);let r=this.entry;for(const e of n)r.map.has(e)||r.map.set(e,{map:new Map,value:a}),r=o.a(r.map.get(e));if(r.value!==a)throw new Error("Tried to overwrite entry at ".concat(this.addressModule.toString(e)));return r.value=t,this}get(e){const t=this.addressModule.toParts(e),n=[];let r=this.entry;for(const e of t){if(r.value!==a){const e=r.value;n.push(e)}const t=r.map.get(e);if(null==t)return n;r=t}if(r.value!==a){const e=r.value;n.push(e)}return n}getLast(e){const t=this.get(e);return t[t.length-1]}}class c extends u{constructor(){super(r.c)}}class s extends u{constructor(){super(r.a)}}},function(e,t,n){"use strict";n.d(t,"b",(function(){return o})),n.d(t,"a",(function(){return i}));var r=n(59);function o(e){const t=new r.b;for(const[n,r]of e.nodeWeights.entries())t.add(n,r);return function(e){return t.get(e).reduce((e,t)=>e*t,1)}}function i(e){const t=new r.a;for(const[n,r]of e.edgeWeights.entries())t.add(n,r);return function(e){return t.get(e).reduce((e,t)=>({forwards:e.forwards*t.forwards,backwards:e.backwards*t.backwards}),{forwards:1,backwards:1})}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return u})),n.d(t,"d",(function(){return c})),n.d(t,"b",(function(){return s})),n.d(t,"c",(function(){return l}));var r=n(5),o=n(20),i=n(15);const a={type:"sourcecred/weightedGraph",version:"0.1.0"};function u(){return{graph:new r.b,weights:o.b()}}function c(e){const t=e.graph.toJSON(),n=o.e(e.weights);return Object(i.b)(a,{graphJSON:t,weightsJSON:n})}function s(e){const{graphJSON:t,weightsJSON:n}=Object(i.a)(a,e);return{graph:r.b.fromJSON(t),weights:o.c(n)}}function l(e,t){const n=o.d([e.weights,t],{nodeResolver:(e,t)=>t,edgeResolver:(e,t)=>t});return{graph:e.graph,weights:n}}},function(e,t,n){var r=n(30),o=n(473);e.exports=function(e,t){return e&&e.length?o(e,r(t,2)):[]}},function(e,t,n){var r=n(523)();e.exports=r},function(e,t,n){"use strict"; +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,u,c=a(e),s=1;sthis.props.onWeightsChange(Object(l.c)(e))},a.a.createElement(s.b,{style:{margin:"2px"}})))}}},function(e,t,n){"use strict";var r=n(1),o=n.n(r),i=n(3),a=n(26);class u extends o.a.Component{render(){return o.a.createElement(a.c,{name:this.props.type.name,weight:this.props.weight,description:this.props.type.description,onChange:e=>this.props.onChange(e)})}}class c extends o.a.Component{render(){const{weight:e,type:t}=this.props,{forwards:n,backwards:r}=e,{forwardName:i,backwardName:a,description:u}=t;return o.a.createElement("div",null,o.a.createElement(l,{name:a,weight:n,description:u,onChange:e=>{this.props.onChange({forwards:e,backwards:r})}}),o.a.createElement(l,{name:i,weight:r,description:u,onChange:e=>{this.props.onChange({forwards:n,backwards:e})}}))}}function s(e){return o.a.createElement("span",{style:{fontWeight:700,fontStyle:"italic",marginRight:"0.15em"}},e)}class l extends o.a.Component{render(){const e=o.a.createElement(o.a.Fragment,null,s("α")," ",this.props.name," ",s("β"));return o.a.createElement(a.c,{name:e,weight:this.props.weight,description:this.props.description,onChange:this.props.onChange})}}n.d(t,"a",(function(){return f}));class f extends o.a.Component{_nodeConfig(e){const{prefix:t,defaultWeight:n}=e,{onNodeWeightChange:r,nodeWeights:a}=this.props,c=i.c(a.get(t),n);return o.a.createElement(u,{key:t,type:e,weight:c,onChange:e=>r(t,e)})}_edgeConfig(e){const{prefix:t,defaultWeight:n}=e,{onEdgeWeightChange:r,edgeWeights:a}=this.props,u=i.c(a.get(t),n);return o.a.createElement(c,{key:t,type:e,weight:u,onChange:e=>r(t,e)})}_renderPlugin(e){const{name:t,nodeTypes:n,edgeTypes:r,userTypes:i}=e,a=n.filter(e=>{let{prefix:t}=e;return!i.some(e=>e.prefix===t)}).map(e=>this._nodeConfig(e)),u=r.map(e=>this._edgeConfig(e));return o.a.createElement("div",{key:t},o.a.createElement("h3",null,t),o.a.createElement("h4",{style:{marginBottom:"0.3em"}},"Node weights"),a,o.a.createElement("h4",{style:{marginBottom:"0.3em"}},"Edge weights"),o.a.createElement("p",{style:{marginBottom:"0.6em",marginTop:"0.6em"}},"Flow cred from ",s("β")," to ",s("α")," when:"),u)}render(){return o.a.createElement(o.a.Fragment,null,o.a.createElement("div",{style:{display:"flex",flexWrap:"wrap",justifyContent:"space-between"}},this.props.declarations.map(e=>this._renderPlugin(e))))}}},function(e,t,n){function r(e,t){return{path:"/test/"+e+"/",contents:{type:"PAGE",component:t},title:"Inspection test for: "+e,navTitle:null}}function o(e,t){return e.filter(e=>{const n=e.path,r=t.substring(0,n.length),o=t.substring(n.length);return r===n&&(0===o.length||"/"===o)})[0]||null}t.makeRouteData=function(e){return[{path:"/",contents:{type:"PAGE",component:()=>n(271).default},title:"SourceCred",navTitle:"Home"},{path:"/prototype/",contents:{type:"PAGE",component:()=>n(272).default(e)},title:"SourceCred prototype",navTitle:"Prototype"},...e.map(e=>({path:"/prototype/".concat(e,"/"),contents:{type:"PAGE",component:()=>n(536).default(e)},title:"".concat(e," • SourceCred"),navTitle:null})),...e.map(e=>({path:"/timeline/".concat(e,"/"),contents:{type:"PAGE",component:()=>n(537).default(e)},title:"".concat(e," • Timeline"),navTitle:null})),{path:"/discord-invite/",contents:{type:"EXTERNAL_REDIRECT",redirectTo:"https://discord.gg/tsBTgc9"},title:"SourceCred Discord invite",navTitle:null},r("FileUploader",()=>n(534).default),r("TimelineCredView",()=>n(535).default)]},t.resolveRouteFromPath=o,t.resolveTitleFromPath=function(e,t){const n=o(e,t);return n?n.title:"SourceCred"}},function(e,t,n){var r=n(56);e.exports=function(e){return r(e)&&e!=+e}},function(e,t,n){"use strict";var r=n(1),o={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},i=r.createContext&&r.createContext(o),a=function(){return(a=Object.assign||function(e){for(var t,n=1,r=arguments.length;n{this.setState({weights:e})}}),n=o.a.createElement(f.a,{declarations:this.props.pluginDeclarations,nodeWeights:this.state.weights.nodeWeights,edgeWeights:this.state.weights.edgeWeights,onNodeWeightChange:(e,t)=>{this.setState(n=>{let{weights:r}=n;return r.nodeWeights.set(e,t),{weights:r}})},onEdgeWeightChange:(e,t)=>{this.setState(n=>{let{weights:r}=n;return r.edgeWeights.set(e,t),{weights:r}})}}),r=o.a.createElement("input",{type:"range",min:.05,max:.95,step:.05,value:this.state.alpha,onChange:e=>{this.setState({alpha:e.target.valueAsNumber})}}),i=a()(this.params(),this.state.timelineCred.params())&&a()(this.weights(),this.state.timelineCred.weightedGraph().weights),u=o.a.createElement("button",{disabled:this.state.loading||i,onClick:()=>this.analyzeCred()},"re-compute cred");return o.a.createElement("div",null,o.a.createElement("div",{style:{marginTop:30,display:"flex"}},o.a.createElement("span",{style:{paddingLeft:30}},"cred for ",this.props.projectId,o.a.createElement(l.a,{to:"/prototype/".concat(this.props.projectId,"/")},"(legacy)")),o.a.createElement("span",{style:{flexGrow:1}}),this.renderFilterSelect(),o.a.createElement("span",{style:{flexGrow:1}}),o.a.createElement("button",{onClick:()=>{this.setState(e=>{let{showWeightConfig:t}=e;return{showWeightConfig:!t}})}},e?"Hide weight configuration":"Show weight configuration"),u),e&&o.a.createElement("div",{style:{marginTop:10}},o.a.createElement("span",null,"Upload/Download weights:"),t,o.a.createElement("span",null,"α"),r,o.a.createElement("span",null,Object(d.a)(".2f")(this.state.alpha)),n))}renderFilterSelect(){return o.a.createElement("label",null,o.a.createElement("span",{style:{marginLeft:"5px"}},"Showing: "),o.a.createElement("select",{value:h.c(this.state.selectedNodeTypePrefix,""),onChange:e=>{const t=e.target.value||null;this.setState({selectedNodeTypePrefix:t})}},o.a.createElement("option",{key:"All users",value:""},"All users"),this.props.pluginDeclarations.map(e=>{return[o.a.createElement("option",{key:e.nodePrefix,value:e.nodePrefix,style:{fontWeight:"bold"}},e.name),...e.nodeTypes.map(e=>o.a.createElement("option",{key:e.prefix,value:e.prefix}," "+e.name))]})))}render(){const e=o.a.createElement(s.a,{timelineCred:this.state.timelineCred,selectedNodeFilter:this.state.selectedNodeTypePrefix});return o.a.createElement("div",{style:{width:900,margin:"0 auto"}},this.renderConfigurationRow(),e)}}var m=n(220),g=n.n(m),v=n(15);function b(e){return g.a.encode(e)}const w={type:"sourcecred/pluginDeclarations",version:"0.1.0"};n.d(t,"a",(function(){return x})),n.d(t,"b",(function(){return O}));class x extends o.a.Component{constructor(){var e,t,n;super(...arguments),n={loadResult:{type:"LOADING"}},(t="state")in(e=this)?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n}componentDidMount(){this.load()}async load(){const e=await this.props.loader(this.props.assets,this.props.projectId);this.setState({loadResult:e})}render(){const{loadResult:e}=this.state;switch(e.type){case"LOADING":return o.a.createElement("div",{style:{width:900,margin:"0 auto"}},o.a.createElement("h1",null,"Loading..."));case"ERROR":{const{error:t}=e;return o.a.createElement("div",{style:{width:900,margin:"0 auto"}},o.a.createElement("h1",null,"Load Error:"),o.a.createElement("p",null,t.status,":",t.statusText))}case"SUCCESS":{const{timelineCred:t,pluginDeclarations:n}=e;return o.a.createElement(y,{initialTimelineCred:t,projectId:this.props.projectId,pluginDeclarations:n})}default:throw new Error("Unexpected load state: ".concat(e.type))}}}async function O(e,t){try{const[n,r]=await Promise.all([async function(){const n=b(t),r=e.resolve("api/v1/data/projects/".concat(n,"/cred.json")),o=await fetch(r);return o.ok?c.a.fromJSON(await o.json()):Promise.reject(o)}(),async function(){const n=b(t),r=e.resolve("api/v1/data/projects/".concat(n,"/pluginDeclarations.json")),o=await fetch(r);return o.ok?(i=await o.json(),Object(v.a)(w,i)):Promise.reject(o);var i}()]);return{type:"SUCCESS",timelineCred:n,pluginDeclarations:r}}catch(e){return console.error(e),{type:"ERROR",error:e}}}},function(e,t,n){var r=n(202),o=n(505),i=n(53);e.exports=function(e){return e&&e.length?r(e,i,o):void 0}},function(e,t,n){var r=n(202),o=n(506),i=n(53);e.exports=function(e){return e&&e.length?r(e,i,o):void 0}},,,function(e,t,n){"use strict";t.__esModule=!0;t.addEventListener=function(e,t,n){return e.addEventListener?e.addEventListener(t,n,!1):e.attachEvent("on"+t,n)},t.removeEventListener=function(e,t,n){return e.removeEventListener?e.removeEventListener(t,n,!1):e.detachEvent("on"+t,n)},t.supportsHistory=function(){var e=window.navigator.userAgent;return(-1===e.indexOf("Android 2.")&&-1===e.indexOf("Android 4.0")||-1===e.indexOf("Mobile Safari")||-1!==e.indexOf("Chrome")||-1!==e.indexOf("Windows Phone"))&&(window.history&&"pushState"in window.history)},t.supportsGoWithoutReloadUsingHash=function(){return-1===window.navigator.userAgent.indexOf("Firefox")},t.supportsPopstateOnHashchange=function(){return-1===window.navigator.userAgent.indexOf("Trident")},t.isExtraneousPopstateEvent=function(e){return void 0===e.state&&-1===navigator.userAgent.indexOf("CriOS")}},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){"use strict";e.exports=function(e){var t="string"==typeof e?e.charCodeAt(0):e;return t>=48&&t<=57}},function(e,t,n){"use strict";e.exports=u;var r=n(308),o=r.CONTINUE,i=r.SKIP,a=r.EXIT;function u(e,t,n,o){"function"==typeof t&&"function"!=typeof n&&(o=n,n=t,t=null),r(e,t,(function(e,t){var r=t[t.length-1],o=r?r.children.indexOf(e):null;return n(e,o,r)}),o)}u.CONTINUE=o,u.SKIP=i,u.EXIT=a},function(e,t,n){var r=n(49);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},function(e,t,n){var r=n(409),o=n(410),i=n(411),a=n(412),u=n(413);function c(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t0&&void 0!==arguments[0]?arguments[0]:{},n=e(t),r=t.stringifyQuery,i=t.parseQueryString;"function"!=typeof r&&(r=l),"function"!=typeof i&&(i=f);var a=function(e){return e?(null==e.query&&(e.query=i(e.search.substring(1))),e):e},p=function(e,t){if(null==t)return e;var n="string"==typeof e?(0,s.parsePath)(e):e,i=r(t);return o({},n,{search:i?"?"+i:""})},h=function(){return a(n.getCurrentLocation())},d=function(e){return n.listenBefore((function(t,n){return(0,u.default)(e,a(t),n)}))},y=function(e){return n.listen((function(t){return e(a(t))}))},m=function(e){return n.push(p(e,e.query))},g=function(e){return n.replace(p(e,e.query))},v=function(e){return n.createPath(p(e,e.query))},b=function(e){return n.createHref(p(e,e.query))},w=function(e){for(var t=arguments.length,r=Array(t>1?t-1:0),o=1;o0&&void 0!==arguments[0]?arguments[0]:{},n=e(t),r=t.basename,i=function(e){return e?(r&&null==e.basename&&(0===e.pathname.toLowerCase().indexOf(r.toLowerCase())?(e.pathname=e.pathname.substring(r.length),e.basename=r,""===e.pathname&&(e.pathname="/")):e.basename=""),e):e},c=function(e){if(!r)return e;var t="string"==typeof e?(0,u.parsePath)(e):e,n=t.pathname,i="/"===r.slice(-1)?r:r+"/",a="/"===n.charAt(0)?n.slice(1):n;return o({},t,{pathname:i+a})},s=function(){return i(n.getCurrentLocation())},l=function(e){return n.listenBefore((function(t,n){return(0,a.default)(e,i(t),n)}))},f=function(e){return n.listen((function(t){return e(i(t))}))},p=function(e){return n.push(c(e))},h=function(e){return n.replace(c(e))},d=function(e){return n.createPath(c(e))},y=function(e){return n.createHref(c(e))},m=function(e){for(var t=arguments.length,r=Array(t>1?t-1:0),o=1;o{const t=e.target.files[0],n=new FileReader;n.onload=()=>{const e=n.result;if("string"!=typeof e)throw new Error("Unexpected: jsonString is not string");const t=JSON.parse(e);this.props.onUpload(t)},n.readAsText(t)}}))}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));var r=n(38);function o(e,t,n,r,o){e.forEach((e,i)=>{let{neighbor:a,weight:u}=e;const c=a.length;let s=n*t[i];for(let e=0;e=t.maxIterations){return t.verbose&&console.log("[".concat(l,"] FAILED to converge")),o(n,a,u,c,s),{pi:c,convergenceDelta:Object(r.a)(c,s)}}l++,o(n,a,u,c,s);const e=Object(r.a)(c,s);if(t.verbose&&console.log("[".concat(l,"] delta = ").concat(e)),e{const{yieldAfterMs:o}=t,i=()=>{const t=Date.now();do{const t=n.next();if(t.done){if(null==t.value)throw new Error(String(t.value));return void e(t.value)}}while(Date.now()-t0?Object(h.a)((function(t){t.setFullYear(Math.floor(t.getFullYear()/e)*e),t.setMonth(0,1),t.setHours(0,0,0,0)}),(function(t,n){t.setFullYear(t.getFullYear()+n*e)})):null};var x=w,O=(w.range,Object(h.a)((function(e){e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)}),(function(e,t){e.setUTCFullYear(e.getUTCFullYear()+t)}),(function(e,t){return t.getUTCFullYear()-e.getUTCFullYear()}),(function(e){return e.getUTCFullYear()})));O.every=function(e){return isFinite(e=Math.floor(e))&&e>0?Object(h.a)((function(t){t.setUTCFullYear(Math.floor(t.getUTCFullYear()/e)*e),t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),(function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n*e)})):null};var E=O;O.range;function _(e){if(0<=e.y&&e.y<100){var t=new Date(-1,e.m,e.d,e.H,e.M,e.S,e.L);return t.setFullYear(e.y),t}return new Date(e.y,e.m,e.d,e.H,e.M,e.S,e.L)}function k(e){if(0<=e.y&&e.y<100){var t=new Date(Date.UTC(-1,e.m,e.d,e.H,e.M,e.S,e.L));return t.setUTCFullYear(e.y),t}return new Date(Date.UTC(e.y,e.m,e.d,e.H,e.M,e.S,e.L))}function S(e,t,n){return{y:e,m:t,d:n,H:0,M:0,S:0,L:0}}var j,T,P,A={"-":"",_:" ",0:"0"},C=/^\s*\d+/,M=/^%/,N=/[\\^$*+?|[\]().{}]/g;function I(e,t,n){var r=e<0?"-":"",o=(r?-e:e)+"",i=o.length;return r+(i68?1900:2e3),n+r[0].length):-1}function q(e,t,n){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(t.slice(n,n+6));return r?(e.Z=r[1]?0:-(r[2]+(r[3]||"00")),n+r[0].length):-1}function V(e,t,n){var r=C.exec(t.slice(n,n+1));return r?(e.q=3*r[0]-3,n+r[0].length):-1}function Y(e,t,n){var r=C.exec(t.slice(n,n+2));return r?(e.m=r[0]-1,n+r[0].length):-1}function $(e,t,n){var r=C.exec(t.slice(n,n+2));return r?(e.d=+r[0],n+r[0].length):-1}function K(e,t,n){var r=C.exec(t.slice(n,n+3));return r?(e.m=0,e.d=+r[0],n+r[0].length):-1}function X(e,t,n){var r=C.exec(t.slice(n,n+2));return r?(e.H=+r[0],n+r[0].length):-1}function J(e,t,n){var r=C.exec(t.slice(n,n+2));return r?(e.M=+r[0],n+r[0].length):-1}function Q(e,t,n){var r=C.exec(t.slice(n,n+2));return r?(e.S=+r[0],n+r[0].length):-1}function Z(e,t,n){var r=C.exec(t.slice(n,n+3));return r?(e.L=+r[0],n+r[0].length):-1}function ee(e,t,n){var r=C.exec(t.slice(n,n+6));return r?(e.L=Math.floor(r[0]/1e3),n+r[0].length):-1}function te(e,t,n){var r=M.exec(t.slice(n,n+1));return r?n+r[0].length:-1}function ne(e,t,n){var r=C.exec(t.slice(n));return r?(e.Q=+r[0],n+r[0].length):-1}function re(e,t,n){var r=C.exec(t.slice(n));return r?(e.s=+r[0],n+r[0].length):-1}function oe(e,t){return I(e.getDate(),t,2)}function ie(e,t){return I(e.getHours(),t,2)}function ae(e,t){return I(e.getHours()%12||12,t,2)}function ue(e,t){return I(1+b.count(x(e),e),t,3)}function ce(e,t){return I(e.getMilliseconds(),t,3)}function se(e,t){return ce(e,t)+"000"}function le(e,t){return I(e.getMonth()+1,t,2)}function fe(e,t){return I(e.getMinutes(),t,2)}function pe(e,t){return I(e.getSeconds(),t,2)}function he(e){var t=e.getDay();return 0===t?7:t}function de(e,t){return I(g.b.count(x(e)-1,e),t,2)}function ye(e,t){var n=e.getDay();return e=n>=4||0===n?Object(g.c)(e):g.c.ceil(e),I(g.c.count(x(e),e)+(4===x(e).getDay()),t,2)}function me(e){return e.getDay()}function ge(e,t){return I(g.a.count(x(e)-1,e),t,2)}function ve(e,t){return I(e.getFullYear()%100,t,2)}function be(e,t){return I(e.getFullYear()%1e4,t,4)}function we(e){var t=e.getTimezoneOffset();return(t>0?"-":(t*=-1,"+"))+I(t/60|0,"0",2)+I(t%60,"0",2)}function xe(e,t){return I(e.getUTCDate(),t,2)}function Oe(e,t){return I(e.getUTCHours(),t,2)}function Ee(e,t){return I(e.getUTCHours()%12||12,t,2)}function _e(e,t){return I(1+m.count(E(e),e),t,3)}function ke(e,t){return I(e.getUTCMilliseconds(),t,3)}function Se(e,t){return ke(e,t)+"000"}function je(e,t){return I(e.getUTCMonth()+1,t,2)}function Te(e,t){return I(e.getUTCMinutes(),t,2)}function Pe(e,t){return I(e.getUTCSeconds(),t,2)}function Ae(e){var t=e.getUTCDay();return 0===t?7:t}function Ce(e,t){return I(p.b.count(E(e)-1,e),t,2)}function Me(e,t){var n=e.getUTCDay();return e=n>=4||0===n?Object(p.c)(e):p.c.ceil(e),I(p.c.count(E(e),e)+(4===E(e).getUTCDay()),t,2)}function Ne(e){return e.getUTCDay()}function Ie(e,t){return I(p.a.count(E(e)-1,e),t,2)}function De(e,t){return I(e.getUTCFullYear()%100,t,2)}function Re(e,t){return I(e.getUTCFullYear()%1e4,t,4)}function Le(){return"+0000"}function Fe(){return"%"}function ze(e){return+e}function Ue(e){return Math.floor(+e/1e3)}function Be(e,t){switch(arguments.length){case 0:break;case 1:this.range(e);break;default:this.range(t).domain(e)}return this}j=function(e){var t=e.dateTime,n=e.date,r=e.time,o=e.periods,i=e.days,a=e.shortDays,u=e.months,c=e.shortMonths,s=R(o),l=L(o),f=R(i),h=L(i),d=R(a),y=L(a),v=R(u),w=L(u),x=R(c),O=L(c),E={a:function(e){return a[e.getDay()]},A:function(e){return i[e.getDay()]},b:function(e){return c[e.getMonth()]},B:function(e){return u[e.getMonth()]},c:null,d:oe,e:oe,f:se,H:ie,I:ae,j:ue,L:ce,m:le,M:fe,p:function(e){return o[+(e.getHours()>=12)]},q:function(e){return 1+~~(e.getMonth()/3)},Q:ze,s:Ue,S:pe,u:he,U:de,V:ye,w:me,W:ge,x:null,X:null,y:ve,Y:be,Z:we,"%":Fe},j={a:function(e){return a[e.getUTCDay()]},A:function(e){return i[e.getUTCDay()]},b:function(e){return c[e.getUTCMonth()]},B:function(e){return u[e.getUTCMonth()]},c:null,d:xe,e:xe,f:Se,H:Oe,I:Ee,j:_e,L:ke,m:je,M:Te,p:function(e){return o[+(e.getUTCHours()>=12)]},q:function(e){return 1+~~(e.getUTCMonth()/3)},Q:ze,s:Ue,S:Pe,u:Ae,U:Ce,V:Me,w:Ne,W:Ie,x:null,X:null,y:De,Y:Re,Z:Le,"%":Fe},T={a:function(e,t,n){var r=d.exec(t.slice(n));return r?(e.w=y[r[0].toLowerCase()],n+r[0].length):-1},A:function(e,t,n){var r=f.exec(t.slice(n));return r?(e.w=h[r[0].toLowerCase()],n+r[0].length):-1},b:function(e,t,n){var r=x.exec(t.slice(n));return r?(e.m=O[r[0].toLowerCase()],n+r[0].length):-1},B:function(e,t,n){var r=v.exec(t.slice(n));return r?(e.m=w[r[0].toLowerCase()],n+r[0].length):-1},c:function(e,n,r){return M(e,t,n,r)},d:$,e:$,f:ee,H:X,I:X,j:K,L:Z,m:Y,M:J,p:function(e,t,n){var r=s.exec(t.slice(n));return r?(e.p=l[r[0].toLowerCase()],n+r[0].length):-1},q:V,Q:ne,s:re,S:Q,u:z,U:U,V:B,w:F,W:W,x:function(e,t,r){return M(e,n,t,r)},X:function(e,t,n){return M(e,r,t,n)},y:G,Y:H,Z:q,"%":te};function P(e,t){return function(n){var r,o,i,a=[],u=-1,c=0,s=e.length;for(n instanceof Date||(n=new Date(+n));++u53)return null;"w"in i||(i.w=1),"Z"in i?(o=(r=k(S(i.y,0,1))).getUTCDay(),r=o>4||0===o?p.a.ceil(r):Object(p.a)(r),r=m.offset(r,7*(i.V-1)),i.y=r.getUTCFullYear(),i.m=r.getUTCMonth(),i.d=r.getUTCDate()+(i.w+6)%7):(o=(r=_(S(i.y,0,1))).getDay(),r=o>4||0===o?g.a.ceil(r):Object(g.a)(r),r=b.offset(r,7*(i.V-1)),i.y=r.getFullYear(),i.m=r.getMonth(),i.d=r.getDate()+(i.w+6)%7)}else("W"in i||"U"in i)&&("w"in i||(i.w="u"in i?i.u%7:"W"in i?1:0),o="Z"in i?k(S(i.y,0,1)).getUTCDay():_(S(i.y,0,1)).getDay(),i.m=0,i.d="W"in i?(i.w+6)%7+7*i.W-(o+5)%7:i.w+7*i.U-(o+6)%7);return"Z"in i?(i.H+=i.Z/100|0,i.M+=i.Z%100,k(i)):_(i)}}function M(e,t,n,r){for(var o,i,a=0,u=t.length,c=n.length;a=c)return-1;if(37===(o=t.charCodeAt(a++))){if(o=t.charAt(a++),!(i=T[o in A?t.charAt(a++):o])||(r=i(e,n,r))<0)return-1}else if(o!=n.charCodeAt(r++))return-1}return r}return(E.x=P(n,E),E.X=P(r,E),E.c=P(t,E),j.x=P(n,j),j.X=P(r,j),j.c=P(t,j),{format:function(e){var t=P(e+="",E);return t.toString=function(){return e},t},parse:function(e){var t=C(e+="",!1);return t.toString=function(){return e},t},utcFormat:function(e){var t=P(e+="",j);return t.toString=function(){return e},t},utcParse:function(e){var t=C(e+="",!0);return t.toString=function(){return e},t}})}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}),T=j.format,j.parse,P=j.utcFormat,j.utcParse;const We=Symbol("implicit");var He=Object(h.a)((function(e){e.setDate(1),e.setHours(0,0,0,0)}),(function(e,t){e.setMonth(e.getMonth()+t)}),(function(e,t){return t.getMonth()-e.getMonth()+12*(t.getFullYear()-e.getFullYear())}),(function(e){return e.getMonth()})),Ge=He,qe=(He.range,n(551));n(355),n(377);if(!Object.setPrototypeOf&&!{}.__proto__){var Ve=Object.getPrototypeOf;Object.getPrototypeOf=function(e){return e.__proto__?e.__proto__:Ve.call(Object,e)}}var Ye=n(2),$e=n.n(Ye),Ke=n(62),Xe=n.n(Ke),Je=n(0),Qe=n.n(Je),Ze=n(6),et=n.n(Ze),tt=n(4),nt=n.n(tt),rt=n(33),ot=n.n(rt),it=n(17),at=n.n(it),ut=n(7),ct=n.n(ut),st=n(55),lt=n.n(st),ft=n(73),pt=n.n(ft),ht=n(56),dt=n.n(ht),yt=function(e){return 0===e?0:e>0?1:-1},mt=function(e){return ot()(e)&&e.indexOf("%")===e.length-1},gt=function(e){return dt()(e)&&!pt()(e)},vt=function(e){return gt(e)||ot()(e)},bt=0,wt=function(e){var t=++bt;return"".concat(e||"").concat(t)},xt=function(e,t){var n,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,o=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!gt(e)&&!ot()(e))return r;if(mt(e)){var i=e.indexOf("%");n=t*parseFloat(e.slice(0,i))/100}else n=+e;return pt()(n)&&(n=r),o&&n>t&&(n=t),n},Ot=function(e){if(!e)return null;var t=Object.keys(e);return t&&t.length?e[t[0]]:null},Et=function(e,t){return gt(e)&>(t)?function(n){return e+n*(t-e)}:function(){return t}},_t=function(e,t,n){return e&&e.length?e.find((function(e){return e&&("function"==typeof t?t(e):lt()(e,t))===n})):null};function kt(e,t){for(var n in e)if({}.hasOwnProperty.call(e,n)&&(!{}.hasOwnProperty.call(t,n)||e[n]!==t[n]))return!1;for(var r in t)if({}.hasOwnProperty.call(t,r)&&!{}.hasOwnProperty.call(e,r))return!1;return!0}function St(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var Tt={"aria-current":Qe.a.string,"aria-details":Qe.a.any,"aria-disabled":Qe.a.any,"aria-hidden":Qe.a.any,"aria-invalid":Qe.a.any,"aria-keyshortcuts":Qe.a.any,"aria-label":Qe.a.any,"aria-roledescription":Qe.a.any,"aria-autocomplete":Qe.a.any,"aria-checked":Qe.a.any,"aria-expanded":Qe.a.any,"aria-haspopup":Qe.a.any,"aria-level":Qe.a.any,"aria-modal":Qe.a.any,"aria-multiline":Qe.a.any,"aria-multiselectable":Qe.a.any,"aria-orientation":Qe.a.any,"aria-placeholder":Qe.a.any,"aria-pressed":Qe.a.any,"aria-readonly":Qe.a.any,"aria-required":Qe.a.any,"aria-selected":Qe.a.any,"aria-sort":Qe.a.any,"aria-valuemax":Qe.a.any,"aria-valuemin":Qe.a.any,"aria-valuenow":Qe.a.any,"aria-valuetext":Qe.a.any,"aria-atomic":Qe.a.any,"aria-busy":Qe.a.any,"aria-live":Qe.a.any,"aria-relevant":Qe.a.any,"aria-dropeffect":Qe.a.any,"aria-grabbed":Qe.a.any,"aria-activedescendant":Qe.a.any,"aria-colcount":Qe.a.any,"aria-colindex":Qe.a.any,"aria-colspan":Qe.a.any,"aria-controls":Qe.a.any,"aria-describedby":Qe.a.any,"aria-errormessage":Qe.a.any,"aria-flowto":Qe.a.any,"aria-labelledby":Qe.a.any,"aria-owns":Qe.a.any,"aria-posinset":Qe.a.any,"aria-rowcount":Qe.a.any,"aria-rowindex":Qe.a.any,"aria-rowspan":Qe.a.any,"aria-setsize":Qe.a.any,alignmentBaseline:Qe.a.string,angle:Qe.a.number,baselineShift:Qe.a.string,clip:Qe.a.string,clipPath:Qe.a.string,clipRule:Qe.a.string,color:Qe.a.string,colorInterpolation:Qe.a.string,colorInterpolationFilters:Qe.a.string,colorProfile:Qe.a.string,colorRendering:Qe.a.string,cursor:Qe.a.string,direction:Qe.a.oneOf(["ltr","rtl","inherit"]),display:Qe.a.string,dominantBaseline:Qe.a.string,enableBackground:Qe.a.string,fill:Qe.a.string,fillOpacity:Qe.a.oneOfType([Qe.a.string,Qe.a.number]),fillRule:Qe.a.oneOf(["nonzero","evenodd","inherit"]),filter:Qe.a.string,floodColor:Qe.a.string,floodOpacity:Qe.a.oneOfType([Qe.a.string,Qe.a.number]),font:Qe.a.string,fontFamily:Qe.a.string,fontSize:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),fontSizeAdjust:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),fontStretch:Qe.a.oneOf(["normal","wider","narrower","ultra-condensed","extra-condensed","condensed","semi-condensed","semi-expanded","expanded","extra-expanded","ultra-expanded","inherit"]),fontStyle:Qe.a.oneOf(["normal","italic","oblique","inherit"]),fontVariant:Qe.a.oneOf(["normal","small-caps","inherit"]),fontWeight:Qe.a.oneOf(["normal","bold","bolder","lighter",100,200,300,400,500,600,700,800,900,"inherit"]),glyphOrientationHorizontal:Qe.a.string,glyphOrientationVertical:Qe.a.string,imageRendering:Qe.a.oneOf(["auto","optimizeSpeed","optimizeQuality","inherit"]),kerning:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),letterSpacing:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),lightingColor:Qe.a.string,lineHeight:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),markerEnd:Qe.a.string,markerMid:Qe.a.string,markerStart:Qe.a.string,mask:Qe.a.string,opacity:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),overflow:Qe.a.oneOf(["visible","hidden","scroll","auto","inherit"]),pointerEvents:Qe.a.oneOf(["visiblePainted","visibleFill","visibleStroke","visible","painted","fill","stroke","all","none","inherit"]),shapeRendering:Qe.a.oneOf(["auto","optimizeSpeed","crispEdges","geometricPrecision","inherit"]),stopColor:Qe.a.string,stopOpacity:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),stroke:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),strokeDasharray:Qe.a.string,strokeDashoffset:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),strokeLinecap:Qe.a.oneOf(["butt","round","square","inherit"]),strokeLinejoin:Qe.a.oneOf(["miter","round","bevel","inherit"]),strokeMiterlimit:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),strokeOpacity:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),strokeWidth:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),textAnchor:Qe.a.oneOf(["start","middle","end","inherit"]),textDecoration:Qe.a.oneOf(["none","underline","overline","line-through","blink","inherit"]),textRendering:Qe.a.oneOf(["auto","optimizeSpeed","optimizeLegibility","geometricPrecision","inherit"]),unicodeBidi:Qe.a.oneOf(["normal","embed","bidi-override","inherit"]),visibility:Qe.a.oneOf(["visible","hidden","collapse","inherit"]),wordSpacing:Qe.a.oneOfType([Qe.a.number,Qe.a.string]),writingMode:Qe.a.oneOf(["lr-tb","rl-tb","tb-rl","lr","rl","tb","inherit"]),transform:Qe.a.string,role:Qe.a.string,focusable:Qe.a.string,tabIndex:Qe.a.string,style:Qe.a.object,width:Qe.a.number,height:Qe.a.number,dx:Qe.a.number,dy:Qe.a.number,x:Qe.a.number,y:Qe.a.number,r:Qe.a.number,radius:Qe.a.oneOfType([Qe.a.number,Qe.a.array])},Pt={onClick:Qe.a.func,onMouseDown:Qe.a.func,onMouseUp:Qe.a.func,onMouseOver:Qe.a.func,onMouseMove:Qe.a.func,onMouseOut:Qe.a.func,onMouseEnter:Qe.a.func,onMouseLeave:Qe.a.func,onTouchEnd:Qe.a.func,onTouchMove:Qe.a.func,onTouchStart:Qe.a.func,onTouchCancel:Qe.a.func},At={click:"onClick",mousedown:"onMouseDown",mouseup:"onMouseUp",mouseover:"onMouseOver",mousemove:"onMouseMove",mouseout:"onMouseOut",mouseenter:"onMouseEnter",mouseleave:"onMouseLeave",touchcancel:"onTouchCancel",touchend:"onTouchEnd",touchmove:"onTouchMove",touchstart:"onTouchStart"},Ct=["plainline","line","square","rect","circle","cross","diamond","star","triangle","wye","none"],Mt=["none"],Nt=function(e){return"string"==typeof e?e:e?e.displayName||e.name||"Component":""},It=function(e,t){var n=[],r=[];return r=ct()(t)?t.map((function(e){return Nt(e)})):[Nt(t)],i.a.Children.forEach(e,(function(e){var t=e&&e.type&&(e.type.displayName||e.type.name);-1!==r.indexOf(t)&&n.push(e)})),n},Dt=function(e,t){var n=It(e,t);return n&&n[0]},Rt=function(e){if(!e||$e()(e))return null;var t=i.a.isValidElement(e)?e.props:e;if(!at()(t))return null;var n=null;for(var r in t)({}).hasOwnProperty.call(t,r)&&Tt[r]&&(n||(n={}),n[r]=t[r]);return n},Lt=function(e,t){return function(n){return e(t,n),null}},Ft=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(!e||$e()(e))return null;var r=i.a.isValidElement(e)?e.props:e;if(!at()(r))return null;var o=null;for(var a in r)({}).hasOwnProperty.call(r,a)&&Pt[a]&&(o||(o={}),o[a]=t||(n?Lt(r[a],r):r[a]));return o},zt=function(e,t,n){return function(r){return e(t,n,r),null}},Ut=function(e,t,n){if(!at()(e))return null;var r=null;for(var o in e)({}).hasOwnProperty.call(e,o)&&Pt[o]&&$e()(e[o])&&(r||(r={}),r[o]=zt(e[o],t,n));return r},Bt=function(e){if(!e||!e.props)return!1;var t=e.props,n=t.width,r=t.height;return!(!gt(n)||n<=0||!gt(r)||r<=0)},Wt=function(){return!("undefined"!=typeof window&&window.document&&window.document.createElement&&window.setTimeout)},Ht=["a","altGlyph","altGlyphDef","altGlyphItem","animate","animateColor","animateMotion","animateTransform","circle","clipPath","color-profile","cursor","defs","desc","ellipse","feBlend","feColormatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","filter","font","font-face","font-face-format","font-face-name","font-face-url","foreignObject","g","glyph","glyphRef","hkern","image","line","lineGradient","marker","mask","metadata","missing-glyph","mpath","path","pattern","polygon","polyline","radialGradient","rect","script","set","stop","style","svg","switch","symbol","text","textPath","title","tref","tspan","use","view","vkern"],Gt=function(e,t){if(nt()(e)&&nt()(t))return!0;if(!nt()(e)&&!nt()(t)){var n=e.props||{},r=n.children,o=jt(n,["children"]),i=t.props||{},a=i.children,u=jt(i,["children"]);return r&&a?kt(o,u)&&qt(r,a):!r&&!a&&kt(o,u)}return!1},qt=function e(t,n){if(t===n)return!0;if(o.Children.count(t)!==o.Children.count(n))return!1;var r=o.Children.count(t);if(0===r)return!0;if(1===r)return Gt(ct()(t)?t[0]:t,ct()(n)?n[0]:n);for(var i=0;i=0}(e))n.push(e);else if(e&&t[Nt(e.type)]){var i=Nt(e.type),a=t[i],u=a.handler,c=a.once;if(c&&!r[i]||!c){var s=u(e,i,o);ct()(s)?n=[n].concat(St(s)):n.push(s),r[i]=!0}}})),n},Yt=function(e){var t=e&&e.type;return t&&At[t]?At[t]:null};function $t(){return($t=Object.assign||function(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var Xt={width:Qe.a.number.isRequired,height:Qe.a.number.isRequired,viewBox:Qe.a.shape({x:Qe.a.number,y:Qe.a.number,width:Qe.a.number,height:Qe.a.number}),className:Qe.a.string,style:Qe.a.object,children:Qe.a.oneOfType([Qe.a.arrayOf(Qe.a.node),Qe.a.node])};function Jt(e){var t=e.children,n=e.width,r=e.height,o=e.viewBox,a=e.className,u=e.style,c=Kt(e,["children","width","height","viewBox","className","style"]),s=o||{width:n,height:r,x:0,y:0},l=et()("recharts-surface",a),f=Rt(c);return i.a.createElement("svg",$t({},f,{className:l,width:n,height:r,style:u,viewBox:"".concat(s.x," ").concat(s.y," ").concat(s.width," ").concat(s.height),version:"1.1"}),t)}Jt.propTypes=Xt;var Qt=Jt,Zt=(Math.abs,Math.atan2,Math.cos,Math.max,Math.min,Math.sin,Math.sqrt,Math.PI),en=2*Zt;var tn={draw:function(e,t){var n=Math.sqrt(t/Zt);e.moveTo(n,0),e.arc(0,0,n,0,en)}},nn={draw:function(e,t){var n=Math.sqrt(t/5)/2;e.moveTo(-3*n,-n),e.lineTo(-n,-n),e.lineTo(-n,-3*n),e.lineTo(n,-3*n),e.lineTo(n,-n),e.lineTo(3*n,-n),e.lineTo(3*n,n),e.lineTo(n,n),e.lineTo(n,3*n),e.lineTo(-n,3*n),e.lineTo(-n,n),e.lineTo(-3*n,n),e.closePath()}},rn=Math.sqrt(1/3),on=2*rn,an={draw:function(e,t){var n=Math.sqrt(t/on),r=n*rn;e.moveTo(0,-n),e.lineTo(r,0),e.lineTo(0,n),e.lineTo(-r,0),e.closePath()}},un={draw:function(e,t){var n=Math.sqrt(t),r=-n/2;e.rect(r,r,n,n)}},cn=Math.sin(Zt/10)/Math.sin(7*Zt/10),sn=Math.sin(en/10)*cn,ln=-Math.cos(en/10)*cn,fn={draw:function(e,t){var n=Math.sqrt(.8908130915292852*t),r=sn*n,o=ln*n;e.moveTo(0,-n),e.lineTo(r,o);for(var i=1;i<5;++i){var a=en*i/5,u=Math.cos(a),c=Math.sin(a);e.lineTo(c*n,-u*n),e.lineTo(u*r-c*o,c*r+u*o)}e.closePath()}},pn=Math.sqrt(3),hn={draw:function(e,t){var n=-Math.sqrt(t/(3*pn));e.moveTo(0,2*n),e.lineTo(-pn*n,-n),e.lineTo(pn*n,-n),e.closePath()}},dn=Math.sqrt(3)/2,yn=1/Math.sqrt(12),mn=3*(yn/2+1),gn={draw:function(e,t){var n=Math.sqrt(t/mn),r=n/2,o=n*yn,i=r,a=n*yn+n,u=-i,c=a;e.moveTo(r,o),e.lineTo(i,a),e.lineTo(u,c),e.lineTo(-.5*r-dn*o,dn*r+-.5*o),e.lineTo(-.5*i-dn*a,dn*i+-.5*a),e.lineTo(-.5*u-dn*c,dn*u+-.5*c),e.lineTo(-.5*r+dn*o,-.5*o-dn*r),e.lineTo(-.5*i+dn*a,-.5*a-dn*i),e.lineTo(-.5*u+dn*c,-.5*c-dn*u),e.closePath()}},vn=Math.PI,bn=2*vn,wn=bn-1e-6;function xn(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function On(){return new xn}xn.prototype=On.prototype={constructor:xn,moveTo:function(e,t){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(e,t){this._+="L"+(this._x1=+e)+","+(this._y1=+t)},quadraticCurveTo:function(e,t,n,r){this._+="Q"+ +e+","+ +t+","+(this._x1=+n)+","+(this._y1=+r)},bezierCurveTo:function(e,t,n,r,o,i){this._+="C"+ +e+","+ +t+","+ +n+","+ +r+","+(this._x1=+o)+","+(this._y1=+i)},arcTo:function(e,t,n,r,o){e=+e,t=+t,n=+n,r=+r,o=+o;var i=this._x1,a=this._y1,u=n-e,c=r-t,s=i-e,l=a-t,f=s*s+l*l;if(o<0)throw new Error("negative radius: "+o);if(null===this._x1)this._+="M"+(this._x1=e)+","+(this._y1=t);else if(f>1e-6)if(Math.abs(l*u-c*s)>1e-6&&o){var p=n-i,h=r-a,d=u*u+c*c,y=p*p+h*h,m=Math.sqrt(d),g=Math.sqrt(f),v=o*Math.tan((vn-Math.acos((d+f-y)/(2*m*g)))/2),b=v/g,w=v/m;Math.abs(b-1)>1e-6&&(this._+="L"+(e+b*s)+","+(t+b*l)),this._+="A"+o+","+o+",0,0,"+ +(l*p>s*h)+","+(this._x1=e+w*u)+","+(this._y1=t+w*c)}else this._+="L"+(this._x1=e)+","+(this._y1=t);else;},arc:function(e,t,n,r,o,i){e=+e,t=+t,i=!!i;var a=(n=+n)*Math.cos(r),u=n*Math.sin(r),c=e+a,s=t+u,l=1^i,f=i?r-o:o-r;if(n<0)throw new Error("negative radius: "+n);null===this._x1?this._+="M"+c+","+s:(Math.abs(this._x1-c)>1e-6||Math.abs(this._y1-s)>1e-6)&&(this._+="L"+c+","+s),n&&(f<0&&(f=f%bn+bn),f>wn?this._+="A"+n+","+n+",0,1,"+l+","+(e-a)+","+(t-u)+"A"+n+","+n+",0,1,"+l+","+(this._x1=c)+","+(this._y1=s):f>1e-6&&(this._+="A"+n+","+n+",0,"+ +(f>=vn)+","+l+","+(this._x1=e+n*Math.cos(o))+","+(this._y1=t+n*Math.sin(o))))},rect:function(e,t,n,r){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)+"h"+ +n+"v"+ +r+"h"+-n+"Z"},toString:function(){return this._}};var En=On,_n=function(e){return function(){return e}};function kn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Sn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function jn(e){return(jn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Tn(){return(Tn=Object.assign||function(e){for(var t=1;t=0&&n>=0?{width:t,height:n}:null}},{key:"getDefaultPosition",value:function(e){var t,n,r=this.props,o=r.layout,i=r.align,a=r.verticalAlign,u=r.margin,c=r.chartWidth,s=r.chartHeight;return e&&(void 0!==e.left&&null!==e.left||void 0!==e.right&&null!==e.right)||(t="center"===i&&"vertical"===o?{left:((c||0)-(this.getBBox()||{width:0}).width)/2}:"right"===i?{right:u&&u.right||0}:{left:u&&u.left||0}),e&&(void 0!==e.top&&null!==e.top||void 0!==e.bottom&&null!==e.bottom)||(n="middle"===a?{top:((s||0)-(this.getBBox()||{height:0}).height)/2}:"bottom"===a?{bottom:u&&u.bottom||0}:{top:u&&u.top||0}),Kn({},t,{},n)}},{key:"updateBBox",value:function(){var e=this.state,t=e.boxWidth,n=e.boxHeight,r=this.props.onBBoxUpdate;if(this.wrapperNode&&this.wrapperNode.getBoundingClientRect){var o=this.wrapperNode.getBoundingClientRect();(Math.abs(o.width-t)>1||Math.abs(o.height-n)>1)&&this.setState({boxWidth:o.width,boxHeight:o.height},(function(){r&&r(o)}))}else-1===t&&-1===n||this.setState({boxWidth:-1,boxHeight:-1},(function(){r&&r(null)}))}},{key:"render",value:function(){var e=this,t=this.props,n=t.content,r=t.width,o=t.height,a=t.wrapperStyle,u=t.paylodUniqBy,c=t.payload,s=Kn({position:"absolute",width:r||"auto",height:o||"auto"},this.getDefaultPosition(a),{},a);return i.a.createElement("div",{className:"recharts-legend-wrapper",style:s,ref:function(t){e.wrapperNode=t}},function(e,t){return i.a.isValidElement(e)?i.a.cloneElement(e,t):$e()(e)?e(t):i.a.createElement(Vn,t)}(n,Kn({},this.props,{payload:nr(u,c)})))}}])&&Jn(n.prototype,r),o&&Jn(n,o),t}(o.PureComponent);or.displayName="Legend",or.propTypes={content:Qe.a.oneOfType([Qe.a.element,Qe.a.func]),wrapperStyle:Qe.a.object,chartWidth:Qe.a.number,chartHeight:Qe.a.number,width:Qe.a.number,height:Qe.a.number,iconSize:Qe.a.number,iconType:Qe.a.oneOf(rr),layout:Qe.a.oneOf(["horizontal","vertical"]),align:Qe.a.oneOf(["center","left","right"]),verticalAlign:Qe.a.oneOf(["top","bottom","middle"]),margin:Qe.a.shape({top:Qe.a.number,left:Qe.a.number,bottom:Qe.a.number,right:Qe.a.number}),payload:Qe.a.arrayOf(Qe.a.shape({value:Qe.a.any,id:Qe.a.any,type:Qe.a.oneOf(Ct)})),paylodUniqBy:Qe.a.oneOfType([Qe.a.func,Qe.a.bool]),formatter:Qe.a.func,onMouseEnter:Qe.a.func,onMouseLeave:Qe.a.func,onClick:Qe.a.func,onBBoxUpdate:Qe.a.func},or.defaultProps={iconSize:14,layout:"horizontal",align:"center",verticalAlign:"bottom"};var ir=or,ar=n(57),ur=n.n(ar),cr=n(39),sr=n.n(cr);function lr(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=-1;sr()((function r(o){n<0&&(n=o),o-n>t?(e(o),n=-1):sr()(r)}))}function fr(e){return(fr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function pr(e){return function(e){if(Array.isArray(e))return e}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function hr(){var e=function(){return null},t=!1;return{stop:function(){t=!0},start:function(n){t=!1,function n(r){if(!t){if(Array.isArray(r)){if(!r.length)return;var o=pr(r),i=o[0],a=o.slice(1);return"number"==typeof i?void lr(n.bind(null,a),i):(n(i),void lr(n.bind(null,a)))}"object"===fr(r)&&e(r),"function"==typeof r&&r()}}(n)},subscribe:function(t){return e=t,function(){e=function(){return null}}}}}var dr=n(212),yr=n.n(dr);function mr(e){for(var t=1;t=0&&e<=1}));var l=Pr(r,i),f=Pr(o,a),p=Ar(r,i),h=function(e){return e>1?1:e<0?0:e},d=function(e){for(var t=e>1?1:e,n=t,r=0;r<8;++r){var o=l(n)-t,i=p(n);if(Math.abs(o-t)<1e-4||i<1e-4)return f(n);n=h(n-o/i)}return f(n)};return d.isStepper=!1,d},Mr=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.stiff,n=void 0===t?100:t,r=e.damping,o=void 0===r?8:r,i=e.dt,a=void 0===i?17:i,u=function(e,t,r){var i=r+(-(e-t)*n-r*o)*a/1e3,u=r*a/1e3+e;return Math.abs(u-t)<1e-4&&Math.abs(i)<1e-4?[t,0]:[u,i]};return u.isStepper=!0,u.dt=a,u},Nr=n(213),Ir=n.n(Nr);function Dr(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function Gr(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t0?n[o-1]:r,p=s||Object.keys(c);if("function"==typeof u||"spring"===u)return Gr(e).concat([t.runJSAnimation.bind(t,{from:f.style,to:c,duration:i,easing:u}),i]);var h=_r(p,i,u),d=qr({},f.style,c,{transition:h});return Gr(e).concat([d,i,l]).filter(xr)}),[a,Math.max(c,r)])),[e.onAnimationEnd]))}},{key:"runAnimation",value:function(e){this.manager||(this.manager=hr());var t=e.begin,n=e.duration,r=e.attributeName,o=e.to,i=e.easing,a=e.onAnimationStart,u=e.onAnimationEnd,c=e.steps,s=e.children,l=this.manager;if(this.unSubscribe=l.subscribe(this.handleStyleChange),"function"!=typeof i&&"function"!=typeof s&&"spring"!==i)if(c.length>1)this.runStepAnimation(e);else{var f=r?Vr({},r,o):o,p=_r(Object.keys(f),n,i);l.start([a,t,qr({},f,{transition:p}),n,u])}else this.runJSAnimation(e)}},{key:"handleStyleChange",value:function(e){this.changeStyle(e)}},{key:"changeStyle",value:function(e){this.mounted&&this.setState({style:e})}},{key:"render",value:function(){var e=this.props,t=e.children,n=(e.begin,e.duration,e.attributeName,e.easing,e.isActive),r=(e.steps,e.from,e.to,e.canBegin,e.onAnimationEnd,e.shouldReAnimate,e.onAnimationReStart,Hr(e,["children","begin","duration","attributeName","easing","isActive","steps","from","to","canBegin","onAnimationEnd","shouldReAnimate","onAnimationReStart"])),a=o.Children.count(t),u=Er(this.state.style);if("function"==typeof t)return t(u);if(!n||0===a)return t;var c=function(e){var t=e.props,n=t.style,i=void 0===n?{}:n,a=t.className;return Object(o.cloneElement)(e,qr({},r,{style:qr({},i,u),className:a}))};return 1===a?c(o.Children.only(t)):i.a.createElement("div",null,o.Children.map(t,(function(e){return c(e)})))}}])&&Yr(n.prototype,r),a&&Yr(n,a),t}(o.PureComponent);Qr.displayName="Animate",Qr.propTypes={from:Qe.a.oneOfType([Qe.a.object,Qe.a.string]),to:Qe.a.oneOfType([Qe.a.object,Qe.a.string]),attributeName:Qe.a.string,duration:Qe.a.number,begin:Qe.a.number,easing:Qe.a.oneOfType([Qe.a.string,Qe.a.func]),steps:Qe.a.arrayOf(Qe.a.shape({duration:Qe.a.number.isRequired,style:Qe.a.object.isRequired,easing:Qe.a.oneOfType([Qe.a.oneOf(["ease","ease-in","ease-out","ease-in-out","linear"]),Qe.a.func]),properties:Qe.a.arrayOf("string"),onAnimationEnd:Qe.a.func})),children:Qe.a.oneOfType([Qe.a.node,Qe.a.func]),isActive:Qe.a.bool,canBegin:Qe.a.bool,onAnimationEnd:Qe.a.func,shouldReAnimate:Qe.a.bool,onAnimationStart:Qe.a.func,onAnimationReStart:Qe.a.func},Qr.defaultProps={begin:0,duration:1e3,from:"",to:"",attributeName:"",easing:"ease",isActive:!0,canBegin:!0,steps:[],onAnimationEnd:function(){},onAnimationStart:function(){}};var Zr=Qr,eo=n(99);function to(e){return(to="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function no(){return(no=Object.assign||function(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function oo(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function io(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{},t=e.steps,n=e.duration;return t&&t.length?t.reduce((function(e,t){return e+(dt()(t.duration)&&t.duration>0?t.duration:0)}),0):dt()(n)?n:0},lo=function(e){function t(){var e,n;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var r=arguments.length,o=new Array(r),i=0;il[t]+o?Math.max(f,l[t]):Math.max(p,l[t])},n}var n,r,o;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ro(e,t)}(t,e),n=t,(r=[{key:"componentDidMount",value:function(){this.updateBBox()}},{key:"componentDidUpdate",value:function(){this.updateBBox()}},{key:"updateBBox",value:function(){var e=this.state,t=e.boxWidth,n=e.boxHeight;if(this.wrapperNode&&this.wrapperNode.getBoundingClientRect){var r=this.wrapperNode.getBoundingClientRect();(Math.abs(r.width-t)>1||Math.abs(r.height-n)>1)&&this.setState({boxWidth:r.width,boxHeight:r.height})}else-1===t&&-1===n||this.setState({boxWidth:-1,boxHeight:-1})}},{key:"render",value:function(){var e,t,n,r=this,o=this.props,a=o.payload,u=o.isAnimationActive,c=o.animationDuration,s=o.animationEasing,l=o.filterNull,f=function(e,t){return!0===e?Xe()(t,Fo):$e()(e)?Xe()(t,e):t}(o.paylodUniqBy,l&&a&&a.length?a.filter((function(e){return!nt()(e.value)})):a),p=f&&f.length,h=this.props,d=h.content,y=h.viewBox,m=h.coordinate,g=h.position,v=h.active,b=Co({pointerEvents:"none",visibility:v&&p?"visible":"hidden",position:"absolute",top:0},h.wrapperStyle);if(g&>(g.x)&>(g.y))t=g.x,n=g.y;else{var w=this.state,x=w.boxWidth,O=w.boxHeight;x>0&&O>0&&m?(t=this.getTranslate({key:"x",tooltipDimension:x,viewBoxDimension:y.width}),n=this.getTranslate({key:"y",tooltipDimension:O,viewBoxDimension:y.height})):b.visibility="hidden"}b=Co({},Er({transform:this.props.useTranslate3d?"translate3d(".concat(t,"px, ").concat(n,"px, 0)"):"translate(".concat(t,"px, ").concat(n,"px)")}),{},b),u&&v&&(b=Co({},Er({transition:"transform ".concat(c,"ms ").concat(s)}),{},b));var E=et()(Lo,(Mo(e={},"".concat(Lo,"-right"),gt(t)&&m&>(m.x)&&t>=m.x),Mo(e,"".concat(Lo,"-left"),gt(t)&&m&>(m.x)&&t=m.y),Mo(e,"".concat(Lo,"-top"),gt(n)&&m&>(m.y)&&n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function Vo(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Yo(e){for(var t=1;t=0;--t)o[t]=(a[t]-o[t+1])/i[t];for(i[r-1]=(e[r]+o[r-1])/2,t=0;t=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,t),this._context.lineTo(e,t);else{var n=this._x*(1-this._t)+e*this._t;this._context.lineTo(n,this._y),this._context.lineTo(n,t)}}this._x=e,this._y=t}};function bi(e){return e[0]}function wi(e){return e[1]}var xi=function(){var e=bi,t=wi,n=_n(!0),r=null,o=ci,i=null;function a(a){var u,c,s,l=a.length,f=!1;for(null==r&&(i=o(s=En())),u=0;u<=l;++u)!(u=l;--f)u.point(m[f],g[f]);u.lineEnd(),u.areaEnd()}y&&(m[s]=+e(p,s,c),g[s]=+n(p,s,c),u.point(t?+t(p,s,c):m[s],r?+r(p,s,c):g[s]))}if(h)return u=null,h+""||null}function s(){return xi().defined(o).curve(a).context(i)}return c.x=function(n){return arguments.length?(e="function"==typeof n?n:_n(+n),t=null,c):e},c.x0=function(t){return arguments.length?(e="function"==typeof t?t:_n(+t),c):e},c.x1=function(e){return arguments.length?(t=null==e?null:"function"==typeof e?e:_n(+e),c):t},c.y=function(e){return arguments.length?(n="function"==typeof e?e:_n(+e),r=null,c):n},c.y0=function(e){return arguments.length?(n="function"==typeof e?e:_n(+e),c):n},c.y1=function(e){return arguments.length?(r=null==e?null:"function"==typeof e?e:_n(+e),c):r},c.lineX0=c.lineY0=function(){return s().x(e).y(n)},c.lineY1=function(){return s().x(e).y(r)},c.lineX1=function(){return s().x(t).y(n)},c.defined=function(e){return arguments.length?(o="function"==typeof e?e:_n(!!e),c):o},c.curve=function(e){return arguments.length?(a=e,null!=i&&(u=a(i)),c):a},c.context=function(e){return arguments.length?(null==e?i=u=null:u=a(i=e),c):i},c};function Ei(e){return(Ei="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function _i(){return(_i=Object.assign||function(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var $i={className:Qe.a.string,children:Qe.a.oneOfType([Qe.a.arrayOf(Qe.a.node),Qe.a.node])};function Ki(e){var t=e.children,n=e.className,r=Yi(e,["children","className"]),o=et()("recharts-layer",n);return i.a.createElement("g",Vi({className:o},r),t)}Ki.propTypes=$i;var Xi=Ki,Ji=n(215),Qi=n.n(Ji),Zi=n(102),ea=n.n(Zi);function ta(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function na(e){for(var t=1;t=0&&o===+o?"".concat(o,"px"):o),";");var r,o,i}),"")},sa=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(null==e||Wt())return{width:0,height:0};var n="".concat(e),r=ca(t),o="".concat(n,"-").concat(r);if(ia.widthCache[o])return ia.widthCache[o];try{var i=document.getElementById("recharts_measurement_span");i||((i=document.createElement("span")).setAttribute("id","recharts_measurement_span"),document.body.appendChild(i));var a=na({},aa,{},t);Object.keys(a).map((function(e){return i.style[e]=a[e],e})),i.textContent=n;var u=i.getBoundingClientRect(),c={width:u.width,height:u.height};return ia.widthCache[o]=c,++ia.cacheCount>2e3&&(ia.cacheCount=0,ia.widthCache={}),c}catch(e){return{width:0,height:0}}};function la(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function fa(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function pa(e){return(pa="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function ha(){return(ha=Object.assign||function(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function ya(e,t){for(var n=0;nt?1:e>=t?0:NaN},Aa=function(e){var t;return 1===e.length&&(t=e,e=function(e,n){return Pa(t(e),n)}),{left:function(t,n,r,o){for(null==r&&(r=0),null==o&&(o=t.length);r>>1;e(t[i],n)<0?r=i+1:o=i}return r},right:function(t,n,r,o){for(null==r&&(r=0),null==o&&(o=t.length);r>>1;e(t[i],n)>0?o=i:r=i+1}return r}}};var Ca=Aa(Pa),Ma=Ca.right,Na=(Ca.left,Ma);var Ia=function(e){return null===e?NaN:+e},Da=Array.prototype,Ra=(Da.slice,Da.map,function(e,t,n){e=+e,t=+t,n=(o=arguments.length)<2?(t=e,e=0,1):o<3?1:+n;for(var r=-1,o=0|Math.max(0,Math.ceil((t-e)/n)),i=new Array(o);++r0)return[e];if((r=t0)for(e=Math.ceil(e/a),t=Math.floor(t/a),i=new Array(o=Math.ceil(t-e+1));++u=0?(i>=La?10:i>=Fa?5:i>=za?2:1)*Math.pow(10,o):-Math.pow(10,-o)/(i>=La?10:i>=Fa?5:i>=za?2:1)}function Wa(e,t,n){var r=Math.abs(t-e)/Math.max(0,n),o=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),i=r/o;return i>=La?o*=10:i>=Fa?o*=5:i>=za&&(o*=2),t=1)return+n(e[r-1],r-1,e);var r,o=(r-1)*t,i=Math.floor(o),a=+n(e[i],i,e);return a+(+n(e[i+1],i+1,e)-a)*(o-i)}};function Ga(e,t){switch(arguments.length){case 0:break;case 1:this.range(e);break;default:this.range(t).domain(e)}return this}function qa(e,t){switch(arguments.length){case 0:break;case 1:this.interpolator(e);break;default:this.interpolator(t).domain(e)}return this}function Va(){}function Ya(e,t){var n=new Va;if(e instanceof Va)e.each((function(e,t){n.set(t,e)}));else if(Array.isArray(e)){var r,o=-1,i=e.length;if(null==t)for(;++o>8&15|t>>4&240,t>>4&15|240&t,(15&t)<<4|15&t,1):8===n?new ku(t>>24&255,t>>16&255,t>>8&255,(255&t)/255):4===n?new ku(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|240&t,((15&t)<<4|15&t)/255):null):(t=pu.exec(e))?new ku(t[1],t[2],t[3],1):(t=hu.exec(e))?new ku(255*t[1]/100,255*t[2]/100,255*t[3]/100,1):(t=du.exec(e))?Eu(t[1],t[2],t[3],t[4]):(t=yu.exec(e))?Eu(255*t[1]/100,255*t[2]/100,255*t[3]/100,t[4]):(t=mu.exec(e))?Pu(t[1],t[2]/100,t[3]/100,1):(t=gu.exec(e))?Pu(t[1],t[2]/100,t[3]/100,t[4]):vu.hasOwnProperty(e)?Ou(vu[e]):"transparent"===e?new ku(NaN,NaN,NaN,0):null}function Ou(e){return new ku(e>>16&255,e>>8&255,255&e,1)}function Eu(e,t,n,r){return r<=0&&(e=t=n=NaN),new ku(e,t,n,r)}function _u(e,t,n,r){return 1===arguments.length?((o=e)instanceof uu||(o=xu(o)),o?new ku((o=o.rgb()).r,o.g,o.b,o.opacity):new ku):new ku(e,t,n,null==r?1:r);var o}function ku(e,t,n,r){this.r=+e,this.g=+t,this.b=+n,this.opacity=+r}function Su(){return"#"+Tu(this.r)+Tu(this.g)+Tu(this.b)}function ju(){var e=this.opacity;return(1===(e=isNaN(e)?1:Math.max(0,Math.min(1,e)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===e?")":", "+e+")")}function Tu(e){return((e=Math.max(0,Math.min(255,Math.round(e)||0)))<16?"0":"")+e.toString(16)}function Pu(e,t,n,r){return r<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new Cu(e,t,n,r)}function Au(e){if(e instanceof Cu)return new Cu(e.h,e.s,e.l,e.opacity);if(e instanceof uu||(e=xu(e)),!e)return new Cu;if(e instanceof Cu)return e;var t=(e=e.rgb()).r/255,n=e.g/255,r=e.b/255,o=Math.min(t,n,r),i=Math.max(t,n,r),a=NaN,u=i-o,c=(i+o)/2;return u?(a=t===i?(n-r)/u+6*(n0&&c<1?0:a,new Cu(a,u,c,e.opacity)}function Cu(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}function Mu(e,t,n){return 255*(e<60?t+(n-t)*e/60:e<180?n:e<240?t+(n-t)*(240-e)/60:t)}function Nu(e,t,n,r,o){var i=e*e,a=i*e;return((1-3*e+3*i-a)*t+(4-6*i+3*a)*n+(1+3*e+3*i-3*a)*r+a*o)/6}iu(uu,xu,{copy:function(e){return Object.assign(new this.constructor,this,e)},displayable:function(){return this.rgb().displayable()},hex:bu,formatHex:bu,formatHsl:function(){return Au(this).formatHsl()},formatRgb:wu,toString:wu}),iu(ku,_u,au(uu,{brighter:function(e){return e=null==e?1/.7:Math.pow(1/.7,e),new ku(this.r*e,this.g*e,this.b*e,this.opacity)},darker:function(e){return e=null==e?.7:Math.pow(.7,e),new ku(this.r*e,this.g*e,this.b*e,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Su,formatHex:Su,formatRgb:ju,toString:ju})),iu(Cu,(function(e,t,n,r){return 1===arguments.length?Au(e):new Cu(e,t,n,null==r?1:r)}),au(uu,{brighter:function(e){return e=null==e?1/.7:Math.pow(1/.7,e),new Cu(this.h,this.s,this.l*e,this.opacity)},darker:function(e){return e=null==e?.7:Math.pow(.7,e),new Cu(this.h,this.s,this.l*e,this.opacity)},rgb:function(){var e=this.h%360+360*(this.h<0),t=isNaN(e)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*t,o=2*n-r;return new ku(Mu(e>=240?e-240:e+120,o,r),Mu(e,o,r),Mu(e<120?e+240:e-120,o,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var e=this.opacity;return(1===(e=isNaN(e)?1:Math.max(0,Math.min(1,e)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===e?")":", "+e+")")}}));var Iu=function(e){return function(){return e}};function Du(e,t){return function(n){return e+n*t}}function Ru(e){return 1==(e=+e)?Lu:function(t,n){return n-t?function(e,t,n){return e=Math.pow(e,n),t=Math.pow(t,n)-e,n=1/n,function(r){return Math.pow(e+r*t,n)}}(t,n,e):Iu(isNaN(t)?n:t)}}function Lu(e,t){var n=t-e;return n?Du(e,n):Iu(isNaN(e)?t:e)}var Fu=function e(t){var n=Ru(t);function r(e,t){var r=n((e=_u(e)).r,(t=_u(t)).r),o=n(e.g,t.g),i=n(e.b,t.b),a=Lu(e.opacity,t.opacity);return function(t){return e.r=r(t),e.g=o(t),e.b=i(t),e.opacity=a(t),e+""}}return r.gamma=e,r}(1);function zu(e){return function(t){var n,r,o=t.length,i=new Array(o),a=new Array(o),u=new Array(o);for(n=0;n=1?(n=1,t-1):Math.floor(n*t),o=e[r],i=e[r+1],a=r>0?e[r-1]:2*o-i,u=ri&&(o=t.slice(i,o),u[a]?u[a]+=o:u[++a]=o),(n=n[0])===(r=r[0])?u[a]?u[a]+=r:u[++a]=r:(u[++a]=null,c.push({i:a,x:Gu(n,r)})),i=Yu.lastIndex;return ir&&(t=n,n=r,r=t),function(e){return Math.max(n,Math.min(r,e))}}function rc(e,t,n){var r=e[0],o=e[1],i=t[0],a=t[1];return o2?oc:rc,o=i=null,f}function f(t){return isNaN(t=+t)?n:(o||(o=r(a.map(e),u,c)))(e(s(t)))}return f.invert=function(n){return s(t((i||(i=r(u,a.map(e),Gu)))(n)))},f.domain=function(e){return arguments.length?(a=Za.call(e,Qu),s===ec||(s=nc(a)),l()):a.slice()},f.range=function(e){return arguments.length?(u=eu.call(e),l()):u.slice()},f.rangeRound=function(e){return u=eu.call(e),c=Xu,l()},f.clamp=function(e){return arguments.length?(s=e?nc(a):ec,f):s!==ec},f.interpolate=function(e){return arguments.length?(c=e,l()):c},f.unknown=function(e){return arguments.length?(n=e,f):n},function(n,r){return e=n,t=r,l()}}function uc(e,t){return ac()(e,t)}var cc=n(144),sc=n(25),lc=function(e,t,n,r){var o,i=Wa(e,t,n);switch((r=Object(cc.a)(null==r?",f":r)).type){case"s":var a=Math.max(Math.abs(e),Math.abs(t));return null!=r.precision||isNaN(o=function(e,t){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(Object(sc.a)(t)/3)))-Object(sc.a)(Math.abs(e)))}(i,a))||(r.precision=o),Object(qe.b)(r,a);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(o=function(e,t){return e=Math.abs(e),t=Math.abs(t)-e,Math.max(0,Object(sc.a)(t)-Object(sc.a)(e))+1}(i,Math.max(Math.abs(e),Math.abs(t))))||(r.precision=o-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(o=function(e){return Math.max(0,-Object(sc.a)(Math.abs(e)))}(i))||(r.precision=o-2*("%"===r.type))}return Object(qe.a)(r)};function fc(e){var t=e.domain;return e.ticks=function(e){var n=t();return Ua(n[0],n[n.length-1],null==e?10:e)},e.tickFormat=function(e,n){var r=t();return lc(r[0],r[r.length-1],null==e?10:e,n)},e.nice=function(n){null==n&&(n=10);var r,o=t(),i=0,a=o.length-1,u=o[i],c=o[a];return c0?r=Ba(u=Math.floor(u/r)*r,c=Math.ceil(c/r)*r,n):r<0&&(r=Ba(u=Math.ceil(u*r)/r,c=Math.floor(c*r)/r,n)),r>0?(o[i]=Math.floor(u/r)*r,o[a]=Math.ceil(c/r)*r,t(o)):r<0&&(o[i]=Math.ceil(u*r)/r,o[a]=Math.floor(c*r)/r,t(o)),e},e}function pc(){var e=uc(ec,ec);return e.copy=function(){return ic(e,pc())},Ga.apply(e,arguments),fc(e)}function hc(e){var t;function n(e){return isNaN(e=+e)?t:e}return n.invert=n,n.domain=n.range=function(t){return arguments.length?(e=Za.call(t,Qu),n):e.slice()},n.unknown=function(e){return arguments.length?(t=e,n):t},n.copy=function(){return hc(e).unknown(t)},e=arguments.length?Za.call(e,Qu):[0,1],fc(n)}var dc=function(e,t){var n,r=0,o=(e=e.slice()).length-1,i=e[r],a=e[o];return a0){for(;pc)break;y.push(f)}}else for(;p=1;--l)if(!((f=s*l)c)break;y.push(f)}}else y=Ua(p,h,Math.min(h-p,d)).map(n);return r?y.reverse():y},r.tickFormat=function(e,o){if(null==o&&(o=10===i?".0e":","),"function"!=typeof o&&(o=Object(qe.a)(o)),e===1/0)return o;null==e&&(e=10);var a=Math.max(1,i*e/r.ticks().length);return function(e){var r=e/n(Math.round(t(e)));return r*i0?r[o-1]:t[0],o=r?[o[r-1],n]:[o[a-1],o[a]]},a.unknown=function(t){return arguments.length?(e=t,a):a},a.thresholds=function(){return o.slice()},a.copy=function(){return Ic().domain([t,n]).range(i).unknown(e)},Ga.apply(fc(a),arguments)}function Dc(){var e,t=[.5],n=[0,1],r=1;function o(o){return o<=o?n[Na(t,o,0,r)]:e}return o.domain=function(e){return arguments.length?(t=eu.call(e),r=Math.min(t.length,n.length-1),o):t.slice()},o.range=function(e){return arguments.length?(n=eu.call(e),r=Math.min(t.length,n.length-1),o):n.slice()},o.invertExtent=function(e){var r=n.indexOf(e);return[t[r-1],t[r]]},o.unknown=function(t){return arguments.length?(e=t,o):e},o.copy=function(){return Dc().domain(t).range(n).unknown(e)},Ga.apply(o,arguments)}var Rc=Object(h.a)((function(e){e.setTime(e-e.getMilliseconds()-e.getSeconds()*d.d-e.getMinutes()*d.c)}),(function(e,t){e.setTime(+e+t*d.b)}),(function(e,t){return(t-e)/d.b}),(function(e){return e.getHours()})),Lc=Rc,Fc=(Rc.range,Object(h.a)((function(e){e.setTime(e-e.getMilliseconds()-e.getSeconds()*d.d)}),(function(e,t){e.setTime(+e+t*d.c)}),(function(e,t){return(t-e)/d.c}),(function(e){return e.getMinutes()}))),zc=Fc,Uc=(Fc.range,Object(h.a)((function(e){e.setTime(e-e.getMilliseconds())}),(function(e,t){e.setTime(+e+t*d.d)}),(function(e,t){return(t-e)/d.d}),(function(e){return e.getUTCSeconds()}))),Bc=Uc,Wc=(Uc.range,Object(h.a)((function(){}),(function(e,t){e.setTime(+e+t)}),(function(e,t){return t-e})));Wc.every=function(e){return e=Math.floor(e),isFinite(e)&&e>0?e>1?Object(h.a)((function(t){t.setTime(Math.floor(t/e)*e)}),(function(t,n){t.setTime(+t+n*e)}),(function(t,n){return(n-t)/e})):Wc:null};var Hc=Wc,Gc=(Wc.range,1e3),qc=60*Gc,Vc=60*qc,Yc=24*Vc,$c=7*Yc,Kc=30*Yc,Xc=365*Yc;function Jc(e){return new Date(e)}function Qc(e){return e instanceof Date?+e:+new Date(+e)}function Zc(e,t,n,r,o,i,a,u,c){var s=uc(ec,ec),l=s.invert,f=s.domain,p=c(".%L"),h=c(":%S"),d=c("%I:%M"),y=c("%I %p"),m=c("%a %d"),g=c("%b %d"),v=c("%B"),b=c("%Y"),w=[[a,1,Gc],[a,5,5*Gc],[a,15,15*Gc],[a,30,30*Gc],[i,1,qc],[i,5,5*qc],[i,15,15*qc],[i,30,30*qc],[o,1,Vc],[o,3,3*Vc],[o,6,6*Vc],[o,12,12*Vc],[r,1,Yc],[r,2,2*Yc],[n,1,$c],[t,1,Kc],[t,3,3*Kc],[e,1,Xc]];function x(u){return(a(u)1)for(var n,r,o,i=1,a=e[t[0]],u=a.length;i=0;)n[t]=t;return n};function ks(e,t){return e[t]}function Ss(e){return(Ss="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function js(){return(js=Object.assign||function(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function As(e,t){for(var n=0;n=0}));if(i&&i.length){var a=i.map((function(e){return e.props.dataKey}));return e.reduce((function(e,t){var r=Us(t,n,0),o=ct()(r)?[ka()(r),Ea()(r)]:[r,r],i=a.reduce((function(e,n){var r=Us(t,n,0),i=o[0]-Math.abs(ct()(r)?r[0]:r),a=o[1]+Math.abs(ct()(r)?r[1]:r);return[Math.min(i,e[0]),Math.max(a,e[1])]}),[1/0,-1/0]);return[Math.min(i[0],e[0]),Math.max(i[1],e[1])]}),[1/0,-1/0])}return null},qs=function(e,t,n,r){var o=t.map((function(t){var o=t.props.dataKey;return"number"===n&&o&&Gs(e,t,o)||Bs(e,o,n,r)}));if("number"===n)return o.reduce((function(e,t){return[Math.min(e[0],t[0]),Math.max(e[1],t[1])]}),[1/0,-1/0]);var i={};return o.reduce((function(e,t){for(var n=0,r=t.length;n=0||t.indexOf("AreaChart")>=0)?{scale:ou(),realScaleType:"point"}:"category"===o?{scale:ru(),realScaleType:"band"}:{scale:pc(),realScaleType:"linear"};if(ot()(n)){var u="scale".concat(n.slice(0,1).toUpperCase()).concat(n.slice(1));return{scale:(r[u]||ou)(),realScaleType:r[u]?u:"point"}}return $e()(n)?{scale:n}:{scale:ou(),realScaleType:"point"}},Js=function(e){var t=e.domain();if(t&&!(t.length<=2)){var n=t.length,r=e.range(),o=Math.min(r[0],r[1])-1e-4,i=Math.max(r[0],r[1])+1e-4,a=e(t[0]),u=e(t[n-1]);(ai||ui)&&e.domain([t[0],t[n-1]])}},Qs={sign:function(e){var t=e.length;if(!(t<=0))for(var n=0,r=e[0].length;n=0?(e[a][n][0]=o,e[a][n][1]=o+u,o=e[a][n][1]):(e[a][n][0]=i,e[a][n][1]=i+u,i=e[a][n][1])}},expand:function(e,t){if((r=e.length)>0){for(var n,r,o,i=0,a=e[0].length;i0){for(var n,r=0,o=e[t[0]],i=o.length;r0&&(r=(n=e[t[0]]).length)>0){for(var n,r,o,i=0,a=1;a=2){for(var n=mo()(t,(function(e){return e.coordinate})),r=1/0,o=1,i=n.length;oi&&(c=2*Math.PI-c),{radius:a,angle:pl(c),angleInRadian:c}},yl=function(e,t){var n=t.startAngle,r=t.endAngle,o=Math.floor(n/360),i=Math.floor(r/360);return e+360*Math.min(o,i)},ml=function(e,t){var n=e.x,r=e.y,o=dl({x:n,y:r},t),i=o.radius,a=o.angle,u=t.innerRadius,c=t.outerRadius;if(ic)return!1;if(0===i)return!0;var s,l=function(e){var t=e.startAngle,n=e.endAngle,r=Math.floor(t/360),o=Math.floor(n/360),i=Math.min(r,o);return{startAngle:t-360*i,endAngle:n-360*i}}(t),f=l.startAngle,p=l.endAngle,h=a;if(f<=p){for(;h>p;)h-=360;for(;h=f&&h<=p}else{for(;h>f;)h-=360;for(;h=p&&h<=f}return s?sl({},t,{radius:i,angle:yl(h,t)}):null};function gl(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t=0?1:-1;"insideStart"===a?(r=d+b*c,o=m):"insideEnd"===a?(r=y-b*c,o=!m):"end"===a&&(r=y+b*c,o=m),o=v<=0?o:!o;var w=hl(l,f,g,r),x=hl(l,f,g,r+359*(o?1:-1)),O="M".concat(w.x,",").concat(w.y,"\n A").concat(g,",").concat(g,",0,1,").concat(o?0:1,",\n ").concat(x.x,",").concat(x.y),E=nt()(e.id)?wt("recharts-radial-line-"):e.id;return i.a.createElement("text",vl({},n,{dominantBaseline:"central",className:et()("recharts-radial-bar-label",s)}),i.a.createElement("defs",null,i.a.createElement("path",{id:E,d:O})),i.a.createElement("textPath",{xlinkHref:"#".concat(E)},t))},Sl=function(e){var t=e.viewBox,n=e.offset,r=e.position,o=t.cx,i=t.cy,a=t.innerRadius,u=t.outerRadius,c=(t.startAngle+t.endAngle)/2;if("outside"===r){var s=hl(o,i,u+n,c),l=s.x;return{x:l,y:s.y,textAnchor:l>=o?"start":"end",verticalAnchor:"middle"}}if("center"===r)return{x:o,y:i,textAnchor:"middle",verticalAnchor:"middle"};if("centerTop"===r)return{x:o,y:i,textAnchor:"middle",verticalAnchor:"start"};if("centerBottom"===r)return{x:o,y:i,textAnchor:"middle",verticalAnchor:"end"};var f=hl(o,i,(a+u)/2,c);return{x:f.x,y:f.y,textAnchor:"middle",verticalAnchor:"middle"}},jl=function(e){var t=e.viewBox,n=e.offset,r=e.position,o=t.x,i=t.y,a=t.width,u=t.height,c=u>=0?1:-1;return"top"===r?{x:o+a/2,y:i-c*n,textAnchor:"middle",verticalAnchor:c>0?"end":"start"}:"bottom"===r?{x:o+a/2,y:i+u+c*n,textAnchor:"middle",verticalAnchor:"start"}:"left"===r?{x:o-n,y:i+u/2,textAnchor:"end",verticalAnchor:"middle"}:"right"===r?{x:o+a+n,y:i+u/2,textAnchor:"start",verticalAnchor:"middle"}:"insideLeft"===r?{x:o+n,y:i+u/2,textAnchor:"start",verticalAnchor:"middle"}:"insideRight"===r?{x:o+a-n,y:i+u/2,textAnchor:"end",verticalAnchor:"middle"}:"insideTop"===r?{x:o+a/2,y:i+c*n,textAnchor:"middle",verticalAnchor:"start"}:"insideBottom"===r?{x:o+a/2,y:i+u-c*n,textAnchor:"middle",verticalAnchor:"end"}:"insideTopLeft"===r?{x:o+n,y:i+c*n,textAnchor:"start",verticalAnchor:"start"}:"insideTopRight"===r?{x:o+a-n,y:i+c*n,textAnchor:"end",verticalAnchor:"start"}:"insideBottomLeft"===r?{x:o+n,y:i+u-c*n,textAnchor:"start",verticalAnchor:"end"}:"insideBottomRight"===r?{x:o+a-n,y:i+u-c*n,textAnchor:"end",verticalAnchor:"end"}:at()(r)&&(gt(r.x)||mt(r.x))&&(gt(r.y)||mt(r.y))?{x:o+xt(r.x,a),y:i+xt(r.y,u),textAnchor:"end",verticalAnchor:"end"}:{x:o+a/2,y:i+u/2,textAnchor:"middle",verticalAnchor:"middle"}},Tl=function(e){return gt(e.cx)};function Pl(e){var t,n=e.viewBox,r=e.position,a=e.value,u=e.children,c=e.content,s=e.className,l=void 0===s?"":s;if(!n||nt()(a)&&nt()(u)&&!Object(o.isValidElement)(c)&&!$e()(c))return null;if(Object(o.isValidElement)(c))return Object(o.cloneElement)(c,e);if($e()(c)){if(t=c(e),Object(o.isValidElement)(t))return t}else t=_l(e);var f=Tl(n),p=Rt(e),h=Ft(e);if(f&&("insideStart"===r||"insideEnd"===r||"end"===r))return kl(e,t,p);var d=f?Sl(e):jl(e);return i.a.createElement(xa,vl({className:et()("recharts-label",l)},p,d,h),t)}Pl.displayName="Label",Pl.defaultProps={offset:5},Pl.propTypes=El;var Al=function(e){var t=e.cx,n=e.cy,r=e.angle,o=e.startAngle,i=e.endAngle,a=e.r,u=e.radius,c=e.innerRadius,s=e.outerRadius,l=e.x,f=e.y,p=e.top,h=e.left,d=e.width,y=e.height,m=e.clockWise;if(gt(d)&>(y)){if(gt(l)&>(f))return{x:l,y:f,width:d,height:y};if(gt(p)&>(h))return{x:p,y:h,width:d,height:y}}return gt(l)&>(f)?{x:l,y:f,width:0,height:0}:gt(t)&>(n)?{cx:t,cy:n,startAngle:o||r||0,endAngle:i||r||0,innerRadius:c||0,outerRadius:s||u||a||0,clockWise:m}:e.viewBox?e.viewBox:{}},Cl=function(e,t){return e?!0===e?i.a.createElement(Pl,{key:"label-implicit",viewBox:t}):vt(e)?i.a.createElement(Pl,{key:"label-implicit",viewBox:t,value:e}):Object(o.isValidElement)(e)?e.type===Pl?Object(o.cloneElement)(e,{key:"label-implicit",viewBox:t}):i.a.createElement(Pl,{key:"label-implicit",content:e,viewBox:t}):$e()(e)?i.a.createElement(Pl,{key:"label-implicit",content:e,viewBox:t}):at()(e)?i.a.createElement(Pl,vl({viewBox:t},e,{key:"label-implicit"})):null:null};Pl.parseViewBox=Al,Pl.renderCallByParent=function(e,t){var n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(!e||!e.children&&n&&!e.label)return null;var r=e.children,i=Al(e),a=It(r,Pl).map((function(e,n){return Object(o.cloneElement)(e,{viewBox:t||i,key:"label-".concat(n)})}));if(!n)return a;var u=Cl(e.label,t||i);return[u].concat(gl(a))};var Ml=Pl;function Nl(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var zl={id:Qe.a.string,data:Qe.a.arrayOf(Qe.a.object),valueAccessor:Qe.a.func,clockWise:Qe.a.bool,dataKey:Qe.a.oneOfType([Qe.a.string,Qe.a.number,Qe.a.func])},Ul={valueAccessor:function(e){return ct()(e.value)?Qi()(e.value):e.value}};function Bl(e){var t=e.data,n=e.valueAccessor,r=e.dataKey,o=e.clockWise,a=e.id,u=Fl(e,["data","valueAccessor","dataKey","clockWise","id"]);return t&&t.length?i.a.createElement(Xi,{className:"recharts-label-list"},t.map((function(e,t){var c=nt()(r)?n(e,t):Us(e&&e.payload,r),s=nt()(a)?{}:{id:"".concat(a,"-").concat(t)};return i.a.createElement(Ml,Il({},Rt(e),u,s,{index:t,value:c,viewBox:Ml.parseViewBox(nt()(o)?e:Rl({},e,{clockWise:o})),key:"label-".concat(t)}))}))):null}Bl.propTypes=zl,Bl.displayName="LabelList";var Wl=function(e,t){return e?!0===e?i.a.createElement(Bl,{key:"labelList-implicit",data:t}):i.a.isValidElement(e)||$e()(e)?i.a.createElement(Bl,{key:"labelList-implicit",data:t,content:e}):at()(e)?i.a.createElement(Bl,Il({data:t},e,{key:"labelList-implicit"})):null:null};Bl.renderCallByParent=function(e,t){var n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(!e||!e.children&&n&&!e.label)return null;var r=e.children,i=It(r,Bl).map((function(e,n){return Object(o.cloneElement)(e,{data:t,key:"labelList-".concat(n)})}));if(!n)return i;var a=Wl(e.label,t);return[a].concat(Nl(i))},Bl.defaultProps=Ul;var Hl=Bl;function Gl(e){return(Gl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function ql(){return(ql=Object.assign||function(e){for(var t=1;ti){u=[].concat(Kl(n.slice(0,c)),[i-s]);break}var l=u.length%2==0?[0,a]:[a];return[].concat(Kl(this.constructor.repeat(n,o)),Kl(u),l).map((function(e){return"".concat(e,"px")})).join(", ")}},{key:"renderErrorBar",value:function(){if(this.props.isAnimationActive&&!this.state.isAnimationFinished)return null;var e=this.props,t=e.points,n=e.xAxis,r=e.yAxis,o=e.layout,a=e.children,u=It(a,Ds);if(!u)return null;function c(e,t){return{x:e.x,y:e.y,value:e.value,errorVal:Us(e.payload,t)}}return u.map((function(e,a){return i.a.cloneElement(e,{key:a,data:t,xAxis:n,yAxis:r,layout:o,dataPointFormatter:c})}))}},{key:"renderDots",value:function(e,t){var n=this;if(this.props.isAnimationActive&&!this.state.isAnimationFinished)return null;var r=this.props,o=r.dot,a=r.points,u=r.dataKey,c=Rt(this.props),s=Rt(o),l=Ft(o),f=a.map((function(e,t){var r=Yl({key:"dot-".concat(t),r:3},c,{},s,{},l,{value:e.value,dataKey:u,cx:e.x,cy:e.y,index:t,payload:e.payload});return n.constructor.renderDotItem(o,r)})),p={clipPath:e?"url(#clipPath-".concat(t,")"):null};return i.a.createElement(Xi,ql({className:"recharts-line-dots",key:"dots"},p),f)}},{key:"renderCurveStatically",value:function(e,t,n,r){var o=this.props,a=o.type,u=o.layout,c=o.connectNulls,s=Yl({},Rt(this.props),{},Ft(this.props),{fill:"none",className:"recharts-line-curve",clipPath:t?"url(#clipPath-".concat(n,")"):null,points:e},r,{type:a,layout:u,connectNulls:c});return i.a.createElement(Li,ql({},s,{pathRef:this.pathRef}))}},{key:"renderCurveWithAnimation",value:function(e,t){var n=this,r=this.props,o=r.points,a=r.strokeDasharray,u=r.isAnimationActive,c=r.animationBegin,s=r.animationDuration,l=r.animationEasing,f=r.animationId,p=r.width,h=r.height,d=this.state,y=d.prevPoints,m=d.totalLength;return i.a.createElement(ho,{begin:c,duration:s,isActive:u,easing:l,from:{t:0},to:{t:1},key:"line-".concat(f),onAnimationEnd:this.handleAnimationEnd,onAnimationStart:this.handleAnimationStart},(function(r){var i=r.t;if(y){var u=y.length/o.length,c=o.map((function(e,t){var r=Math.floor(t*u);if(y[r]){var o=y[r],a=Et(o.x,e.x),c=Et(o.y,e.y);return Yl({},e,{x:a(i),y:c(i)})}if(n.animateNewValues){var s=Et(2*p,e.x),l=Et(h/2,e.y);return Yl({},e,{x:s(i),y:l(i)})}return Yl({},e,{x:e.x,y:e.y})}));return n.renderCurveStatically(c,e,t)}var s,l=Et(0,m)(i);if(a){var f=a.split(/[,\s]+/gim).map((function(e){return parseFloat(e)}));s=n.getStrokeDasharray(l,m,f)}else s="".concat(l,"px ").concat(m-l,"px");return n.renderCurveStatically(o,e,t,{strokeDasharray:s})}))}},{key:"renderCurve",value:function(e,t){var n=this.props,r=n.points,o=n.isAnimationActive,i=this.state,a=i.prevPoints,u=i.totalLength;return o&&r&&r.length&&(!a&&u>0||!ur()(a,r))?this.renderCurveWithAnimation(e,t):this.renderCurveStatically(r,e,t)}},{key:"render",value:function(){var e=this.props,t=e.hide,n=e.dot,r=e.points,o=e.className,a=e.xAxis,u=e.yAxis,c=e.top,s=e.left,l=e.width,f=e.height,p=e.isAnimationActive,h=e.id;if(t||!r||!r.length)return null;var d=this.state.isAnimationFinished,y=1===r.length,m=et()("recharts-line",o),g=a&&a.allowDataOverflow||u&&u.allowDataOverflow,v=nt()(h)?this.id:h;return i.a.createElement(Xi,{className:m},g?i.a.createElement("defs",null,i.a.createElement("clipPath",{id:"clipPath-".concat(v)},i.a.createElement("rect",{x:s,y:c,width:l,height:f}))):null,!y&&this.renderCurve(g,v),this.renderErrorBar(),(y||n)&&this.renderDots(g,v),(!p||d)&&Hl.renderCallByParent(this.props,r))}}])&&Xl(n.prototype,r),o&&Xl(n,o),t}(o.PureComponent);ef.displayName="Line",ef.propTypes=Yl({},Tt,{},Pt,{className:Qe.a.string,type:Qe.a.oneOfType([Qe.a.oneOf(["basis","basisClosed","basisOpen","linear","linearClosed","natural","monotoneX","monotoneY","monotone","step","stepBefore","stepAfter"]),Qe.a.func]),unit:Qe.a.oneOfType([Qe.a.string,Qe.a.number]),name:Qe.a.oneOfType([Qe.a.string,Qe.a.number]),yAxisId:Qe.a.oneOfType([Qe.a.string,Qe.a.number]),xAxisId:Qe.a.oneOfType([Qe.a.string,Qe.a.number]),yAxis:Qe.a.object,xAxis:Qe.a.object,legendType:Qe.a.oneOf(Ct),tooltipType:Qe.a.oneOf(Mt),layout:Qe.a.oneOf(["horizontal","vertical"]),connectNulls:Qe.a.bool,hide:Qe.a.bool,activeDot:Qe.a.oneOfType([Qe.a.object,Qe.a.element,Qe.a.func,Qe.a.bool]),dot:Qe.a.oneOfType([Qe.a.object,Qe.a.element,Qe.a.func,Qe.a.bool]),top:Qe.a.number,left:Qe.a.number,width:Qe.a.number,height:Qe.a.number,points:Qe.a.arrayOf(Qe.a.shape({x:Qe.a.number,y:Qe.a.number,value:Qe.a.value})),onAnimationStart:Qe.a.func,onAnimationEnd:Qe.a.func,isAnimationActive:Qe.a.bool,animateNewValues:Qe.a.bool,animationBegin:Qe.a.number,animationDuration:Qe.a.number,animationEasing:Qe.a.oneOf(["ease","ease-in","ease-out","ease-in-out","linear"]),animationId:Qe.a.number,id:Qe.a.string}),ef.defaultProps={xAxisId:0,yAxisId:0,connectNulls:!1,activeDot:!0,dot:!0,legendType:"line",stroke:"#3182bd",strokeWidth:1,fill:"#fff",points:[],isAnimationActive:!Wt(),animateNewValues:!0,animationBegin:0,animationDuration:1500,animationEasing:"ease",hide:!1,onAnimationStart:function(){},onAnimationEnd:function(){}},ef.getComposedData=function(e){var t=e.props,n=e.xAxis,r=e.yAxis,o=e.xAxisTicks,i=e.yAxisTicks,a=e.dataKey,u=e.bandSize,c=e.displayedData,s=e.offset,l=t.layout;return Yl({points:c.map((function(e,t){var c=Us(e,a);return"horizontal"===l?{x:tl({axis:n,ticks:o,bandSize:u,entry:e,index:t}),y:nt()(c)?null:r.scale(c),value:c,payload:e}:{x:nt()(c)?null:n.scale(c),y:tl({axis:r,ticks:i,bandSize:u,entry:e,index:t}),value:c,payload:e}})),layout:l},s)};var tf=ef;function nf(e){return(nf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function rf(e,t){for(var n=0;n180),",").concat(+(i>u),",\n ").concat(s.x,",").concat(s.y,"\n ");if(r>0){var f=hl(t,n,r,i),p=hl(t,n,r,u);l+="L ".concat(p.x,",").concat(p.y,"\n A ").concat(r,",").concat(r,",0,\n ").concat(+(Math.abs(a)>180),",").concat(+(i<=u),",\n ").concat(f.x,",").concat(f.y," Z")}else l+="L ".concat(t,",").concat(n," Z");return l},qf=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Uf(this,Bf(t).apply(this,arguments))}var n,r,o;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Wf(e,t)}(t,e),n=t,(r=[{key:"render",value:function(){var e=this.props,t=e.cx,n=e.cy,r=e.innerRadius,o=e.outerRadius,a=e.cornerRadius,u=e.forceCornerRadius,c=e.cornerIsExternal,s=e.startAngle,l=e.endAngle,f=e.className;if(o0&&Math.abs(s-l)<360?function(e){var t=e.cx,n=e.cy,r=e.innerRadius,o=e.outerRadius,i=e.cornerRadius,a=e.forceCornerRadius,u=e.cornerIsExternal,c=e.startAngle,s=e.endAngle,l=yt(s-c),f=Hf({cx:t,cy:n,radius:o,angle:c,sign:l,cornerRadius:i,cornerIsExternal:u}),p=f.circleTangency,h=f.lineTangency,d=f.theta,y=Hf({cx:t,cy:n,radius:o,angle:s,sign:-l,cornerRadius:i,cornerIsExternal:u}),m=y.circleTangency,g=y.lineTangency,v=y.theta,b=Math.abs(c-s)-d-v;if(b<0)return a?"M ".concat(h.x,",").concat(h.y,"\n a").concat(i,",").concat(i,",0,0,1,").concat(2*i,",0\n a").concat(i,",").concat(i,",0,0,1,").concat(2*-i,",0\n "):Gf({cx:t,cy:n,innerRadius:r,outerRadius:o,startAngle:c,endAngle:s});var w="M ".concat(h.x,",").concat(h.y,"\n A").concat(i,",").concat(i,",0,0,").concat(+(l<0),",").concat(p.x,",").concat(p.y,"\n A").concat(o,",").concat(o,",0,").concat(+(b>180),",").concat(+(l<0),",").concat(m.x,",").concat(m.y,"\n A").concat(i,",").concat(i,",0,0,").concat(+(l<0),",").concat(g.x,",").concat(g.y,"\n ");if(r>0){var x=Hf({cx:t,cy:n,radius:r,angle:c,sign:l,isExternal:!0,cornerRadius:i,cornerIsExternal:u}),O=x.circleTangency,E=x.lineTangency,_=x.theta,k=Hf({cx:t,cy:n,radius:r,angle:s,sign:-l,isExternal:!0,cornerRadius:i,cornerIsExternal:u}),S=k.circleTangency,j=k.lineTangency,T=k.theta,P=Math.abs(c-s)-_-T;if(P<0)return"".concat(w,"L").concat(t,",").concat(n,"Z");w+="L".concat(j.x,",").concat(j.y,"\n A").concat(i,",").concat(i,",0,0,").concat(+(l<0),",").concat(S.x,",").concat(S.y,"\n A").concat(r,",").concat(r,",0,").concat(+(P>180),",").concat(+(l>0),",").concat(O.x,",").concat(O.y,"\n A").concat(i,",").concat(i,",0,0,").concat(+(l<0),",").concat(E.x,",").concat(E.y,"Z")}else w+="L".concat(t,",").concat(n,"Z");return w}({cx:t,cy:n,innerRadius:r,outerRadius:o,cornerRadius:Math.min(y,d/2),forceCornerRadius:u,cornerIsExternal:c,startAngle:s,endAngle:l}):Gf({cx:t,cy:n,innerRadius:r,outerRadius:o,startAngle:s,endAngle:l}),i.a.createElement("path",Ff({},Rt(this.props),Ft(this.props),{className:h,d:p}))}}])&&zf(n.prototype,r),o&&zf(n,o),t}(o.PureComponent);qf.displayName="Sector",qf.propTypes=function(e){for(var t=1;t=0?1:-1,c=n>=0?1:-1,s=r>=0&&n>=0||r<0&&n<0?1:0;if(a>0&&o instanceof Array){for(var l=[],f=0;f<4;f++)l[f]=o[f]>a?a:o[f];i="M".concat(e,",").concat(t+u*l[0]),l[0]>0&&(i+="A ".concat(l[0],",").concat(l[0],",0,0,").concat(s,",").concat(e+c*l[0],",").concat(t)),i+="L ".concat(e+n-c*l[1],",").concat(t),l[1]>0&&(i+="A ".concat(l[1],",").concat(l[1],",0,0,").concat(s,",\n ").concat(e+n,",").concat(t+u*l[1])),i+="L ".concat(e+n,",").concat(t+r-u*l[2]),l[2]>0&&(i+="A ".concat(l[2],",").concat(l[2],",0,0,").concat(s,",\n ").concat(e+n-c*l[2],",").concat(t+r)),i+="L ".concat(e+c*l[3],",").concat(t+r),l[3]>0&&(i+="A ".concat(l[3],",").concat(l[3],",0,0,").concat(s,",\n ").concat(e,",").concat(t+r-u*l[3])),i+="Z"}else if(a>0&&o===+o&&o>0){var p=Math.min(a,o);i="M ".concat(e,",").concat(t+u*p,"\n A ").concat(p,",").concat(p,",0,0,").concat(s,",").concat(e+c*p,",").concat(t,"\n L ").concat(e+n-c*p,",").concat(t,"\n A ").concat(p,",").concat(p,",0,0,").concat(s,",").concat(e+n,",").concat(t+u*p,"\n L ").concat(e+n,",").concat(t+r-u*p,"\n A ").concat(p,",").concat(p,",0,0,").concat(s,",").concat(e+n-c*p,",").concat(t+r,"\n L ").concat(e+c*p,",").concat(t+r,"\n A ").concat(p,",").concat(p,",0,0,").concat(s,",").concat(e,",").concat(t+r-u*p," Z")}else i="M ".concat(e,",").concat(t," h ").concat(n," v ").concat(r," h ").concat(-n," Z");return i},np=function(e){function t(){var e,n;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var r=arguments.length,o=new Array(r),i=0;i0,from:{width:o,height:a,x:n,y:r},to:{width:o,height:a,x:n,y:r},duration:p,animationEasing:f,isActive:y},(function(t){var n=t.width,r=t.height,o=t.x,a=t.y;return i.a.createElement(ho,{canBegin:s>0,from:"0px ".concat(-1===s?1:s,"px"),to:"".concat(s,"px 0px"),attributeName:"strokeDasharray",begin:h,duration:p,isActive:d,easing:f},i.a.createElement("path",Xf({},Rt(e.props),Ft(e.props),{className:m,d:tp(o,a,n,r,u),ref:function(t){e.node=t}})))})):i.a.createElement("path",Xf({},Rt(this.props),Ft(this.props),{className:m,d:tp(n,r,o,a,u)}))}}])&&Jf(n.prototype,r),o&&Jf(n,o),t}(o.PureComponent);np.displayName="Rectangle",np.propTypes=function(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function lp(e,t){for(var n=0;n=2?yt(y[1].coordinate-y[0].coordinate):1;if(1===v?(n="width"===d?l:f,r="width"===d?l+p:f+h):(n="width"===d?l+p:f+h,r="width"===d?l:f),t){var b=o[g-1],w=$e()(i)?i(b.value):b.value,x=sa(w)[d]+m,O=v*(b.coordinate+v*x/2-r);y[g-1]=b=up({},b,{tickCoord:O>0?b.coordinate-O*v:b.coordinate}),v*(b.tickCoord-v*x/2-n)>=0&&v*(b.tickCoord+v*x/2-r)<=0&&(r=b.tickCoord-v*(x/2+c),y[g-1]=up({},b,{isShow:!0}))}for(var E=t?g-1:g,_=0;_=0&&v*(k.tickCoord+v*j/2-r)<=0&&(n=k.tickCoord+v*(j/2+c),y[_]=up({},k,{isShow:!0}))}return y.filter((function(e){return e.isShow}))}},{key:"getTicksEnd",value:function(e){var t,n,r=e.ticks,o=e.tickFormatter,i=e.viewBox,a=e.orientation,u=e.minTickGap,c=e.unit,s=i.x,l=i.y,f=i.width,p=i.height,h="top"===a||"bottom"===a?"width":"height",d=c&&"width"===h?sa(c)[h]:0,y=(r||[]).slice(),m=y.length,g=m>=2?yt(y[1].coordinate-y[0].coordinate):1;1===g?(t="width"===h?s:l,n="width"===h?s+f:l+p):(t="width"===h?s+f:l+p,n="width"===h?s:l);for(var v=m-1;v>=0;v--){var b=y[v],w=$e()(o)?o(b.value):b.value,x=sa(w)[h]+d;if(v===m-1){var O=g*(b.coordinate+g*x/2-n);y[v]=b=up({},b,{tickCoord:O>0?b.coordinate-O*g:b.coordinate})}else y[v]=b=up({},b,{tickCoord:b.coordinate});g*(b.tickCoord-g*x/2-t)>=0&&g*(b.tickCoord+g*x/2-n)<=0&&(n=b.tickCoord-g*(x/2+u),y[v]=up({},b,{isShow:!0}))}return y.filter((function(e){return e.isShow}))}},{key:"renderTickItem",value:function(e,t,n){return i.a.isValidElement(e)?i.a.cloneElement(e,t):$e()(e)?e(t):i.a.createElement(xa,ip({},t,{className:"recharts-cartesian-axis-tick-value"}),n)}}],(r=[{key:"shouldComponentUpdate",value:function(e,t){var n=e.viewBox,r=sp(e,["viewBox"]),o=this.props,i=o.viewBox,a=sp(o,["viewBox"]);return!kt(n,i)||!kt(r,a)||!kt(t,this.state)}},{key:"getTickLineCoord",value:function(e){var t,n,r,o,i,a,u=this.props,c=u.x,s=u.y,l=u.width,f=u.height,p=u.orientation,h=u.tickSize,d=u.mirror,y=u.tickMargin,m=d?-1:1,g=e.tickSize||h,v=gt(e.tickCoord)?e.tickCoord:e.coordinate;switch(p){case"top":t=n=e.coordinate,a=(r=(o=s+!d*f)-m*g)-m*y,i=v;break;case"left":r=o=e.coordinate,i=(t=(n=c+!d*l)-m*g)-m*y,a=v;break;case"right":r=o=e.coordinate,i=(t=(n=c+d*l)+m*g)+m*y,a=v;break;default:t=n=e.coordinate,a=(r=(o=s+d*f)+m*g)+m*y,i=v}return{line:{x1:t,y1:r,x2:n,y2:o},tick:{x:i,y:a}}}},{key:"getTickTextAnchor",value:function(){var e,t=this.props,n=t.orientation,r=t.mirror;switch(n){case"left":e=r?"start":"end";break;case"right":e=r?"end":"start";break;default:e="middle"}return e}},{key:"getTickVerticalAnchor",value:function(){var e=this.props,t=e.orientation,n=e.mirror,r="end";switch(t){case"left":case"right":r="middle";break;case"top":r=n?"start":"end";break;default:r=n?"end":"start"}return r}},{key:"renderAxisLine",value:function(){var e=this.props,t=e.x,n=e.y,r=e.width,o=e.height,a=e.orientation,u=e.axisLine,c=e.mirror,s=up({},Rt(this.props),{fill:"none"},Rt(u));if("top"===a||"bottom"===a){var l="top"===a&&!c||"bottom"===a&&c;s=up({},s,{x1:t,y1:n+l*o,x2:t+r,y2:n+l*o})}else{var f="left"===a&&!c||"right"===a&&c;s=up({},s,{x1:t+f*r,y1:n,x2:t+f*r,y2:n+o})}return i.a.createElement("line",ip({className:"recharts-cartesian-axis-line"},s))}},{key:"renderTicks",value:function(e){var n=this,r=this.props,o=r.tickLine,a=r.stroke,u=r.tick,c=r.tickFormatter,s=r.unit,l=t.getTicks(up({},this.props,{ticks:e})),f=this.getTickTextAnchor(),p=this.getTickVerticalAnchor(),h=Rt(this.props),d=Rt(u),y=up({},h,{fill:"none"},Rt(o)),m=l.map((function(e,t){var r=n.getTickLineCoord(e),m=r.line,g=r.tick,v=up({textAnchor:f,verticalAnchor:p},h,{stroke:"none",fill:a},d,{},g,{index:t,payload:e,visibleTicksCount:l.length});return i.a.createElement(Xi,ip({className:"recharts-cartesian-axis-tick",key:"tick-".concat(t)},Ut(n.props,e,t)),o&&i.a.createElement("line",ip({className:"recharts-cartesian-axis-tick-line"},y,m)),u&&n.constructor.renderTickItem(u,v,"".concat($e()(c)?c(e.value):e.value).concat(s||"")))}));return i.a.createElement("g",{className:"recharts-cartesian-axis-ticks"},m)}},{key:"render",value:function(){var e=this.props,t=e.axisLine,n=e.width,r=e.height,o=e.ticksGenerator,a=e.className;if(e.hide)return null;var u=this.props,c=u.ticks,s=sp(u,["ticks"]),l=c;return $e()(o)&&(l=c&&c.length>0?o(this.props):o(s)),n<=0||r<=0||!l||!l.length?null:i.a.createElement(Xi,{className:et()("recharts-cartesian-axis",a)},t&&this.renderAxisLine(),this.renderTicks(l),Ml.renderCallByParent(this.props))}}])&&lp(n.prototype,r),o&&lp(n,o),t}(o.Component);dp.displayName="CartesianAxis",dp.propTypes=up({},Tt,{},Pt,{className:Qe.a.string,x:Qe.a.number,y:Qe.a.number,width:Qe.a.number,height:Qe.a.number,orientation:Qe.a.oneOf(["top","bottom","left","right"]),viewBox:Qe.a.shape({x:Qe.a.number,y:Qe.a.number,width:Qe.a.number,height:Qe.a.number}),tick:Qe.a.oneOfType([Qe.a.bool,Qe.a.func,Qe.a.object,Qe.a.element]),axisLine:Qe.a.oneOfType([Qe.a.bool,Qe.a.object]),tickLine:Qe.a.oneOfType([Qe.a.bool,Qe.a.object]),mirror:Qe.a.bool,tickMargin:Qe.a.number.isRequired,minTickGap:Qe.a.number,ticks:Qe.a.array,tickSize:Qe.a.number,stroke:Qe.a.string,tickFormatter:Qe.a.func,ticksGenerator:Qe.a.func,interval:Qe.a.oneOfType([Qe.a.number,Qe.a.oneOf(["preserveStart","preserveEnd","preserveStartEnd"])])}),dp.defaultProps={x:0,y:0,width:0,height:0,viewBox:{x:0,y:0,width:0,height:0},orientation:"bottom",ticks:[],stroke:"#666",tickLine:!0,axisLine:!0,tick:!0,mirror:!1,minTickGap:5,tickSize:6,tickMargin:2,interval:"preserveEnd"};var yp=dp;function mp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function gp(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var vp=["Webkit","Moz","O","ms"],bp=function(e,t){if(!e)return null;var n=e.replace(/(\w)/,(function(e){return e.toUpperCase()})),r=vp.reduce((function(e,r){return function(e){for(var t=1;t0&&n.handleDrag(e.changedTouches[0])},n.handleDragEnd=function(){n.setState({isTravellerMoving:!1,isSlideMoving:!1})},n.handleLeaveWrapper=function(){(n.state.isTravellerMoving||n.state.isSlideMoving)&&(n.leaveTimer=setTimeout(n.handleDragEnd,n.props.leaveTimeOut))},n.handleEnterSlideOrTraveller=function(){n.setState({isTextActive:!0})},n.handleLeaveSlideOrTraveller=function(){n.setState({isTextActive:!1})},n.handleSlideDragStart=function(e){var t=e.changedTouches&&e.changedTouches.length?e.changedTouches[0]:e;n.setState({isTravellerMoving:!1,isSlideMoving:!0,slideMoveStartX:t.pageX})},n.travellerDragStartHandlers={startX:n.handleTravellerDragStart.bind(kp(n),"startX"),endX:n.handleTravellerDragStart.bind(kp(n),"endX")},n.state=e.data&&e.data.length?n.updateScale(e):{},n}var n,r,a;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Sp(e,t)}(t,e),n=t,a=[{key:"getIndexInRange",value:function(e,t){for(var n=0,r=e.length-1;r-n>1;){var o=Math.floor((n+r)/2);e[o]>t?r=o:n=o}return t>=e[r]?r:n}}],(r=[{key:"componentWillReceiveProps",value:function(e){var t=this,n=this.props,r=n.data,o=n.width,i=n.x,a=n.travellerWidth,u=n.updateId;(e.data!==r||e.updateId!==u)&&e.data&&e.data.length?this.setState(this.updateScale(e)):e.width===o&&e.x===i&&e.travellerWidth===a||(this.scale.range([e.x,e.x+e.width-e.travellerWidth]),this.scaleValues=this.scale.domain().map((function(e){return t.scale(e)})),this.setState({startX:this.scale(e.startIndex),endX:this.scale(e.endIndex)}))}},{key:"componentWillUnmount",value:function(){this.scale=null,this.scaleValues=null,this.leaveTimer&&(clearTimeout(this.leaveTimer),this.leaveTimer=null)}},{key:"getIndex",value:function(e){var t=e.startX,n=e.endX,r=this.props,o=r.gap,i=r.data.length-1,a=Math.min(t,n),u=Math.max(t,n),c=this.constructor.getIndexInRange(this.scaleValues,a),s=this.constructor.getIndexInRange(this.scaleValues,u);return{startIndex:c-c%o,endIndex:s===i?i:s-s%o}}},{key:"getTextOfTick",value:function(e){var t=this.props,n=t.data,r=t.tickFormatter,o=t.dataKey,i=Us(n[e],o,e);return $e()(r)?r(i):i}},{key:"handleSlideDrag",value:function(e){var t=this.state,n=t.slideMoveStartX,r=t.startX,o=t.endX,i=this.props,a=i.x,u=i.width,c=i.travellerWidth,s=i.startIndex,l=i.endIndex,f=i.onChange,p=e.pageX-n;p>0?p=Math.min(p,a+u-c-o,a+u-c-r):p<0&&(p=Math.max(p,a-r,a-o));var h=this.getIndex({startX:r+p,endX:o+p});h.startIndex===s&&h.endIndex===l||!f||f(h),this.setState({startX:r+p,endX:o+p,slideMoveStartX:e.pageX})}},{key:"handleTravellerDragStart",value:function(e,t){var n=t.changedTouches&&t.changedTouches.length?t.changedTouches[0]:t;this.setState({isSlideMoving:!1,isTravellerMoving:!0,movingTravellerId:e,brushMoveStartX:n.pageX})}},{key:"handleTravellerMove",value:function(e){var t,n=this.state,r=n.brushMoveStartX,o=n.movingTravellerId,i=n.endX,a=n.startX,u=this.state[o],c=this.props,s=c.x,l=c.width,f=c.travellerWidth,p=c.onChange,h=c.gap,d=c.data,y={startX:this.state.startX,endX:this.state.endX},m=e.pageX-r;m>0?m=Math.min(m,s+l-f-u):m<0&&(m=Math.max(m,s-u)),y[o]=u+m;var g=this.getIndex(y),v=g.startIndex,b=g.endIndex;this.setState((Op(t={},o,u+m),Op(t,"brushMoveStartX",e.pageX),t),(function(){var e;p&&(e=d.length-1,("startX"===o&&(i>a?v%h==0:b%h==0)||ia?b%h==0:v%h==0)||i>a&&b===e)&&p(g))}))}},{key:"updateScale",value:function(e){var t=this,n=e.data,r=e.startIndex,o=e.endIndex,i=e.x,a=e.width,u=e.travellerWidth,c=n.length;return this.scale=ou().domain(Of()(0,c)).range([i,i+a-u]),this.scaleValues=this.scale.domain().map((function(e){return t.scale(e)})),{isTextActive:!1,isSlideMoving:!1,isTravellerMoving:!1,startX:this.scale(r),endX:this.scale(o)}}},{key:"renderBackground",value:function(){var e=this.props,t=e.x,n=e.y,r=e.width,o=e.height,a=e.fill,u=e.stroke;return i.a.createElement("rect",{stroke:u,fill:a,x:t,y:n,width:r,height:o})}},{key:"renderPanorama",value:function(){var e=this.props,t=e.x,n=e.y,r=e.width,a=e.height,u=e.data,c=e.children,s=e.padding,l=o.Children.only(c);return l?i.a.cloneElement(l,{x:t,y:n,width:r,height:a,margin:s,compact:!0,data:u}):null}},{key:"renderTraveller",value:function(e,t){var n=this.props,r=n.y,o=n.travellerWidth,a=n.height,u=n.stroke,c=Math.floor(r+a/2)-1,s=Math.max(e,this.props.x);return i.a.createElement(Xi,{className:"recharts-brush-traveller",onMouseEnter:this.handleEnterSlideOrTraveller,onMouseLeave:this.handleLeaveSlideOrTraveller,onMouseDown:this.travellerDragStartHandlers[t],onTouchStart:this.travellerDragStartHandlers[t],style:{cursor:"col-resize"}},i.a.createElement("rect",{x:s,y:r,width:o,height:a,fill:u,stroke:"none"}),i.a.createElement("line",{x1:s+1,y1:c,x2:s+o-1,y2:c,fill:"none",stroke:"#fff"}),i.a.createElement("line",{x1:s+1,y1:c+2,x2:s+o-1,y2:c+2,fill:"none",stroke:"#fff"}))}},{key:"renderSlide",value:function(e,t){var n=this.props,r=n.y,o=n.height,a=n.stroke;return i.a.createElement("rect",{className:"recharts-brush-slide",onMouseEnter:this.handleEnterSlideOrTraveller,onMouseLeave:this.handleLeaveSlideOrTraveller,onMouseDown:this.handleSlideDragStart,onTouchStart:this.handleSlideDragStart,style:{cursor:"move"},stroke:"none",fill:a,fillOpacity:.2,x:Math.min(e,t),y:r,width:Math.abs(t-e),height:o})}},{key:"renderText",value:function(){var e=this.props,t=e.startIndex,n=e.endIndex,r=e.y,o=e.height,a=e.travellerWidth,u=e.stroke,c=this.state,s=c.startX,l=c.endX,f={pointerEvents:"none",fill:u};return i.a.createElement(Xi,{className:"recharts-brush-texts"},i.a.createElement(xa,xp({textAnchor:"end",verticalAnchor:"middle",x:Math.min(s,l)-5,y:r+o/2},f),this.getTextOfTick(t)),i.a.createElement(xa,xp({textAnchor:"start",verticalAnchor:"middle",x:Math.max(s,l)+a+5,y:r+o/2},f),this.getTextOfTick(n)))}},{key:"render",value:function(){var e=this.props,t=e.data,n=e.className,r=e.children,o=e.x,a=e.y,u=e.width,c=e.height,s=e.alwaysShowText,l=this.state,f=l.startX,p=l.endX,h=l.isTextActive,d=l.isSlideMoving,y=l.isTravellerMoving;if(!t||!t.length||!gt(o)||!gt(a)||!gt(u)||!gt(c)||u<=0||c<=0)return null;var m=et()("recharts-brush",n),g=1===i.a.Children.count(r),v=bp("userSelect","none");return i.a.createElement(Xi,{className:m,onMouseMove:this.handleDrag,onMouseLeave:this.handleLeaveWrapper,onMouseUp:this.handleDragEnd,onTouchEnd:this.handleDragEnd,onTouchMove:this.handleTouchMove,style:v},this.renderBackground(),g&&this.renderPanorama(),this.renderSlide(f,p),this.renderTraveller(f,"startX"),this.renderTraveller(p,"endX"),(h||d||y||s)&&this.renderText())}}])&&Ep(n.prototype,r),a&&Ep(n,a),t}(o.PureComponent);jp.displayName="Brush",jp.propTypes={className:Qe.a.string,fill:Qe.a.string,stroke:Qe.a.string,x:Qe.a.number,y:Qe.a.number,width:Qe.a.number,height:Qe.a.number.isRequired,travellerWidth:Qe.a.number,gap:Qe.a.number,padding:Qe.a.shape({top:Qe.a.number,right:Qe.a.number,bottom:Qe.a.number,left:Qe.a.number}),dataKey:Qe.a.oneOfType([Qe.a.string,Qe.a.number,Qe.a.func]),data:Qe.a.array,startIndex:Qe.a.number,endIndex:Qe.a.number,tickFormatter:Qe.a.func,children:Qe.a.node,onChange:Qe.a.func,updateId:Qe.a.oneOfType([Qe.a.string,Qe.a.number]),leaveTimeOut:Qe.a.number,alwaysShowText:Qe.a.bool},jp.defaultProps={height:40,travellerWidth:5,gap:1,fill:"#fff",stroke:"#666",padding:{top:1,right:1,bottom:1,left:1},leaveTimeOut:1e3,alwaysShowText:!1};var Tp=jp,Pp=function(e,t){var n=e.alwaysShow,r=e.ifOverflow;return n&&(r="extendDomain"),r===t},Ap=n(145),Cp=n.n(Ap);function Mp(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Np(e,t){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:{},n=t.bandAware,r=t.position;if(void 0!==e){if(r)switch(r){case"start":return this.scale(e);case"middle":var o=this.bandwidth?this.bandwidth()/2:0;return this.scale(e)+o;case"end":var i=this.bandwidth?this.bandwidth():0;return this.scale(e)+i;default:return this.scale(e)}if(n){var a=this.bandwidth?this.bandwidth()/2:0;return this.scale(e)+a}return this.scale(e)}}},{key:"isInRange",value:function(e){var t=this.range(),n=t[0],r=t[t.length-1];return n<=r?e>=n&&e<=r:e>=r&&e<=n}},{key:"domain",get:function(){return this.scale.domain}},{key:"range",get:function(){return this.scale.range}},{key:"rangeMin",get:function(){return this.range()[0]}},{key:"rangeMax",get:function(){return this.range()[1]}},{key:"bandwidth",get:function(){return this.scale.bandwidth}}]),e}();zp.EPS=1e-4;var Up=function(){function e(t){Mp(this,e),this.scales=Cp()(t,zp.create),Object.assign(this,this.scales)}return Ip(e,null,[{key:"create",value:function(e){return new this(e)}}]),Ip(e,[{key:"apply",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.bandAware,r=this.scales;return Cp()(e,(function(e,t){return r[t].apply(e,{bandAware:n})}))}},{key:"isInRange",value:function(e){var t=this.scales;return vf()(e,(function(e,n){return t[n].isInRange(e)}))}}]),e}();function Bp(e){return(Bp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Wp(){return(Wp=Object.assign||function(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function Ph(){return(Ph=Object.assign||function(e){for(var t=1;t0&&n.handleMouseMove(e.changedTouches[0])},n.handleTouchStart=function(e){null!=e.changedTouches&&e.changedTouches.length>0&&n.handleMouseDown(e.changedTouches[0])},n.handleTouchEnd=function(e){null!=e.changedTouches&&e.changedTouches.length>0&&n.handleMouseUp(e.changedTouches[0])},n.verticalCoordinatesGenerator=function(e){var t=e.xAxis,n=e.width,r=e.height,o=e.offset;return Ys(yp.getTicks(Mh({},yp.defaultProps,{},t,{ticks:$s(t,!0),viewBox:{x:0,y:0,width:n,height:r}})),o.left,o.left+o.width)},n.horizontalCoordinatesGenerator=function(e){var t=e.yAxis,n=e.width,r=e.height,o=e.offset;return Ys(yp.getTicks(Mh({},yp.defaultProps,{},t,{ticks:$s(t,!0),viewBox:{x:0,y:0,width:n,height:r}})),o.top,o.top+o.height)},n.axesTicksGenerator=function(e){return $s(e,!0)},n.tooltipTicksGenerator=function(e){var t=Ot(e),n=$s(t,!1,!0);return{tooltipTicks:n,orderedTooltipTicks:mo()(n,(function(e){return e.coordinate})),tooltipAxis:t,tooltipAxisBandSize:al(t)}},n.renderCursor=function(e){var r=n.state,i=r.isTooltipActive,a=r.activeCoordinate,u=r.activePayload,c=r.offset;if(!(e&&e.props.cursor&&i&&a))return null;var s,l=n.props.layout,f=Li;if("ScatterChart"===t)s=a,f=If;else if("BarChart"===t)s=n.getCursorRectangle(),f=rp;else if("radial"===l){var p=n.getCursorPoints(),h=p.cx,d=p.cy,y=p.radius;s={cx:h,cy:d,startAngle:p.startAngle,endAngle:p.endAngle,innerRadius:y,outerRadius:y},f=Vf}else s={points:n.getCursorPoints()},f=Li;var m=e.key||"_recharts-cursor",g=Mh({stroke:"#ccc",pointerEvents:"none"},c,{},s,{},Rt(e.props.cursor),{payload:u,key:m,className:"recharts-tooltip-cursor"});return Object(o.isValidElement)(e.props.cursor)?Object(o.cloneElement)(e.props.cursor,g):Object(o.createElement)(f,g)},n.renderPolarAxis=function(e,t,r){var i=e.type.axisType,a=n.state["".concat(i,"Map")][e.props["".concat(i,"Id")]];return Object(o.cloneElement)(e,Mh({},a,{className:i,key:e.key||"".concat(t,"-").concat(r),ticks:$s(a,!0)}))},n.renderXAxis=function(e,t,r){var o=n.state.xAxisMap[e.props.xAxisId];return n.renderAxis(o,e,t,r)},n.renderYAxis=function(e,t,r){var o=n.state.yAxisMap[e.props.yAxisId];return n.renderAxis(o,e,t,r)},n.renderGrid=function(e){var t=n.state,r=t.xAxisMap,i=t.yAxisMap,a=t.offset,u=n.props,c=u.width,s=u.height,l=Ot(r),f=wf()(i,(function(e){return vf()(e.domain,Number.isFinite)}))||Ot(i),p=e.props||{};return Object(o.cloneElement)(e,{key:e.key||"grid",x:gt(p.x)?p.x:a.left,y:gt(p.y)?p.y:a.top,width:gt(p.width)?p.width:a.width,height:gt(p.height)?p.height:a.height,xAxis:l,yAxis:f,offset:a,chartWidth:c,chartHeight:s,verticalCoordinatesGenerator:p.verticalCoordinatesGenerator||n.verticalCoordinatesGenerator,horizontalCoordinatesGenerator:p.horizontalCoordinatesGenerator||n.horizontalCoordinatesGenerator})},n.renderPolarGrid=function(e){var t=n.state,r=t.radiusAxisMap,i=t.angleAxisMap,a=Ot(r),u=Ot(i),c=u.cx,s=u.cy,l=u.innerRadius,f=u.outerRadius;return Object(o.cloneElement)(e,{polarAngles:$s(u,!0).map((function(e){return e.coordinate})),polarRadius:$s(a,!0).map((function(e){return e.coordinate})),cx:c,cy:s,innerRadius:l,outerRadius:f,key:e.key||"polar-grid"})},n.renderBrush=function(e){var t=n.props,r=t.margin,i=t.data,a=n.state,u=a.offset,c=a.dataStartIndex,s=a.dataEndIndex,l=a.updateId;return Object(o.cloneElement)(e,{key:e.key||"_recharts-brush",onChange:Ks(n.handleBrushChange,null,e.props.onChange),data:i,x:gt(e.props.x)?e.props.x:u.left,y:gt(e.props.y)?e.props.y:u.top+u.height+u.brushBottom-(r.bottom||0),width:gt(e.props.width)?e.props.width:u.width,startIndex:c,endIndex:s,updateId:"brush-".concat(l)})},n.renderReferenceElement=function(e,t,r){if(!e)return null;var i=Rh(n).clipPathId,a=n.state,u=a.xAxisMap,c=a.yAxisMap,s=a.offset,l=e.props,f=l.xAxisId,p=l.yAxisId;return Object(o.cloneElement)(e,{key:e.key||"".concat(t,"-").concat(r),xAxis:u[f],yAxis:c[p],viewBox:{x:s.left,y:s.top,width:s.width,height:s.height},clipPathId:i})},n.renderGraphicChild=function(e,t,r){var i=n.filterFormatItem(e,t,r);if(!i)return null;var a=Object(o.cloneElement)(e,i.props),u=n.state,c=u.isTooltipActive,s=u.tooltipAxis,l=u.activeTooltipIndex,f=u.activeLabel,p=n.props.children,h=Dt(p,Wo),d=i.props,y=d.points,m=d.isRange,g=d.baseLine,v=i.item.props,b=v.activeDot;if(!v.hide&&c&&h&&b&&l>=0){var w,x;if(s.dataKey&&!s.allowDuplicatedCategory){var O="function"==typeof s.dataKey?function(e){return s.dataKey(e.payload)}:"payload.".concat(s.dataKey);w=_t(y,O,f),x=m&&g&&_t(g,O,f)}else w=y[l],x=m&&g&&g[l];if(!nt()(w))return[a].concat(Ah(n.renderActivePoints({item:i,activePoint:w,basePoint:x,childIndex:l,isRange:m})))}return m?[a,null,null]:[a,null]},n.renderCustomized=function(e){return Object(o.cloneElement)(e,Mh({},n.props,{},n.state))};var i=n.constructor.createDefaultState(e);return n.state=Mh({},i,{updateId:0},n.updateStateOfAxisMapsOffsetAndStackGroups(Mh({props:e},i,{updateId:0}))),n.uniqueChartId=nt()(e.id)?wt("recharts"):e.id,n.clipPathId="".concat(n.uniqueChartId,"-clip"),e.throttleDelay&&(n.triggeredAfterMouseMove=_f()(n.triggeredAfterMouseMove,e.throttleDelay)),n}var l,f,p;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Lh(e,t)}(r,e),l=r,p=[{key:"getAxisNameByLayout",value:function(e){return"horizontal"===e?{numericAxisName:"yAxis",cateAxisName:"xAxis"}:"vertical"===e?{numericAxisName:"xAxis",cateAxisName:"yAxis"}:"centric"===e?{numericAxisName:"radiusAxis",cateAxisName:"angleAxis"}:{numericAxisName:"angleAxis",cateAxisName:"radiusAxis"}}},{key:"renderActiveDot",value:function(e,t){var n;return n=Object(o.isValidElement)(e)?Object(o.cloneElement)(e,t):$e()(e)?e(t):i.a.createElement(qi,t),i.a.createElement(Xi,{className:"recharts-active-dot",key:t.key},n)}}],(f=[{key:"componentDidMount",value:function(){nt()(this.props.syncId)||this.addListener()}},{key:"componentWillReceiveProps",value:function(e){var t=this,n=this.props,r=n.data,o=n.children,i=n.width,a=n.height,u=n.layout,c=n.stackOffset,s=n.margin,l=this.state.updateId;if(e.data===r&&e.width===i&&e.height===a&&e.layout===u&&e.stackOffset===c&&kt(e.margin,s)){if(!qt(e.children,o)){var f=nt()(e.data)?l+1:l;this.setState((function(n){return Mh({updateId:f},t.updateStateOfAxisMapsOffsetAndStackGroups(Mh({props:e},n,{updateId:f})))}))}}else{var p=this.constructor.createDefaultState(e);this.setState(Mh({},p,{updateId:l+1},this.updateStateOfAxisMapsOffsetAndStackGroups(Mh({props:e},p,{updateId:l+1}))))}nt()(this.props.syncId)&&!nt()(e.syncId)&&this.addListener(),!nt()(this.props.syncId)&&nt()(e.syncId)&&this.removeListener()}},{key:"componentWillUnmount",value:function(){nt()(this.props.syncId)||this.removeListener(),"function"==typeof this.triggeredAfterMouseMove.cancel&&this.triggeredAfterMouseMove.cancel()}},{key:"getAxisMap",value:function(e,t){var n=t.axisType,r=void 0===n?"xAxis":n,o=t.AxisComp,i=t.graphicalItems,a=t.stackGroups,u=t.dataStartIndex,c=t.dataEndIndex,s=e.children,l="".concat(r,"Id"),f=It(s,o),p={};return f&&f.length?p=this.getAxisMapByAxes(e,{axes:f,graphicalItems:i,axisType:r,axisIdKey:l,stackGroups:a,dataStartIndex:u,dataEndIndex:c}):i&&i.length&&(p=this.getAxisMapByItems(e,{Axis:o,graphicalItems:i,axisType:r,axisIdKey:l,stackGroups:a,dataStartIndex:u,dataEndIndex:c})),p}},{key:"getAxisMapByAxes",value:function(e,t){var n=this,r=t.axes,o=t.graphicalItems,i=t.axisType,a=t.axisIdKey,u=t.stackGroups,c=t.dataStartIndex,s=t.dataEndIndex,l=e.layout,f=e.children,p=e.stackOffset,h=Vs(l,i);return r.reduce((function(t,r){var d=r.props,y=d.type,m=d.dataKey,g=d.allowDataOverflow,v=d.allowDuplicatedCategory,b=d.scale,w=d.ticks,x=r.props[a],O=n.constructor.getDisplayedData(e,{graphicalItems:o.filter((function(e){return e.props[a]===x})),dataStartIndex:c,dataEndIndex:s}),E=O.length;if(!t[x]){var _,k,S;if(m){if(_=Bs(O,m,y),"category"===y&&h){var j=function(e){if(!ct()(e))return!1;for(var t=e.length,n={},r=0;r=0?e:[].concat(Ah(e),[t])}),[]))}else if("category"===y)_=v?_.filter((function(e){return""!==e&&!nt()(e)})):ul(r.props.domain,_,r).reduce((function(e,t){return e.indexOf(t)>=0||""===t||nt()(t)?e:[].concat(Ah(e),[t])}),[]);else if("number"===y){var T=function(e,t,n,r){var o=t.map((function(t){return Gs(e,t,n,r)})).filter((function(e){return!nt()(e)}));return o&&o.length?o.reduce((function(e,t){return[Math.min(e[0],t[0]),Math.max(e[1],t[1])]}),[1/0,-1/0]):null}(O,o.filter((function(e){return e.props[a]===x&&!e.props.hide})),m,i);T&&(_=T)}!h||"number"!==y&&"auto"===b||(S=Bs(O,m,"category"))}else _=h?Of()(0,E):u&&u[x]&&u[x].hasStack&&"number"===y?"expand"===p?[0,1]:nl(u[x].stackGroups,c,s):qs(O,o.filter((function(e){return e.props[a]===x&&!e.props.hide})),y,!0);return"number"===y&&(_=Eh(f,_,x,i,w),r.props.domain&&(_=il(r.props.domain,_,g))),Mh({},t,Nh({},x,Mh({},r.props,{axisType:i,domain:_,categoricalDomain:S,duplicateDomain:k,originalDomain:r.props.domain,isCategorial:h,layout:l})))}return t}),{})}},{key:"getAxisMapByItems",value:function(e,t){var n=t.graphicalItems,r=t.Axis,o=t.axisType,i=t.axisIdKey,a=t.stackGroups,u=t.dataStartIndex,c=t.dataEndIndex,s=e.layout,l=e.children,f=this.constructor.getDisplayedData(e,{graphicalItems:n,dataStartIndex:u,dataEndIndex:c}),p=f.length,h=Vs(s,o),d=-1;return n.reduce((function(e,t){var y,m=t.props[i];return e[m]?e:(d++,h?y=Of()(0,p):a&&a[m]&&a[m].hasStack?(y=nl(a[m].stackGroups,u,c),y=Eh(l,y,m,o)):(y=il(r.defaultProps.domain,qs(f,n.filter((function(e){return e.props[i]===m&&!e.props.hide})),"number"),r.defaultProps.allowDataOverflow),y=Eh(l,y,m,o)),Mh({},e,Nh({},m,Mh({axisType:o},r.defaultProps,{hide:!0,orientation:Fh[o]&&Fh[o][d%2],domain:y,originalDomain:r.defaultProps.domain,isCategorial:h,layout:s}))))}),{})}},{key:"getActiveCoordinate",value:function(e,t,n){var r=this.props.layout,o=e.find((function(e){return e&&e.index===t}));if(o){if("horizontal"===r)return{x:o.coordinate,y:n.y};if("vertical"===r)return{x:n.x,y:o.coordinate};if("centric"===r){var i=o.coordinate,a=n.radius;return Mh({},n,{},hl(n.cx,n.cy,a,i),{angle:i,radius:a})}var u=o.coordinate,c=n.angle;return Mh({},n,{},hl(n.cx,n.cy,u,c),{angle:c,radius:u})}return zh}},{key:"getMouseInfo",value:function(e){if(!this.container)return null;var t,n,r,o=function(e,t){return{chartX:Math.round(e.pageX-t.left),chartY:Math.round(e.pageY-t.top)}}(e,(t=this.container,n=t.ownerDocument.documentElement,r={top:0,left:0},void 0!==t.getBoundingClientRect&&(r=t.getBoundingClientRect()),{top:r.top+window.pageYOffset-n.clientTop,left:r.left+window.pageXOffset-n.clientLeft})),i=this.inRange(o.chartX,o.chartY);if(!i)return null;var u=this.state,c=u.xAxisMap,s=u.yAxisMap;if("axis"!==a&&c&&s){var l=Ot(c).scale,f=Ot(s).scale;return Mh({},o,{xValue:l&&l.invert?l.invert(o.chartX):null,yValue:f&&f.invert?f.invert(o.chartY):null})}var p=this.state,h=p.orderedTooltipTicks,d=p.tooltipAxis,y=p.tooltipTicks,m=function(e,t,n,r){var o=-1,i=t.length;if(i>1){if(r&&"angleAxis"===r.axisType&&Math.abs(Math.abs(r.range[1]-r.range[0])-360)<=1e-6)for(var a=r.range,u=0;u0?n[u-1].coordinate:n[i-1].coordinate,s=n[u].coordinate,l=u>=i-1?n[0].coordinate:n[u+1].coordinate,f=void 0;if(yt(s-c)!==yt(l-s)){var p=[];if(yt(l-s)===yt(a[1]-a[0])){f=l;var h=s+a[1]-a[0];p[0]=Math.min(h,(h+c)/2),p[1]=Math.max(h,(h+c)/2)}else{f=c;var d=l+a[1]-a[0];p[0]=Math.min(s,(d+s)/2),p[1]=Math.max(s,(d+s)/2)}var y=[Math.min(s,(f+s)/2),Math.max(s,(f+s)/2)];if(e>y[0]&&e<=y[1]||e>=p[0]&&e<=p[1]){o=n[u].index;break}}else{var m=Math.min(c,l),g=Math.max(c,l);if(e>(m+s)/2&&e<=(g+s)/2){o=n[u].index;break}}}else for(var v=0;v0&&v(t[v].coordinate+t[v-1].coordinate)/2&&e<=(t[v].coordinate+t[v+1].coordinate)/2||v===i-1&&e>(t[v].coordinate+t[v-1].coordinate)/2){o=t[v].index;break}}else o=0;return o}(this.calculateTooltipPos(i),h,y,d);if(m>=0&&y){var g=y[m]&&y[m].value;return Mh({},o,{activeTooltipIndex:m,activeLabel:g,activePayload:this.getTooltipContent(m,g),activeCoordinate:this.getActiveCoordinate(h,m,i)})}return null}},{key:"getTooltipContent",value:function(e,t){var n=this.state,r=n.graphicalItems,o=n.tooltipAxis,i=this.constructor.getDisplayedData(this.props,this.state);return e<0||!r||!r.length||e>=i.length?null:r.reduce((function(n,r){if(r.props.hide)return n;var a,u=r.props,c=u.dataKey,s=u.name,l=u.unit,f=u.formatter,p=u.data,h=u.tooltipType;return(a=o.dataKey&&!o.allowDuplicatedCategory?_t(p||i,o.dataKey,t):p&&p[e]||i[e])?[].concat(Ah(n),[Mh({},Rt(r),{dataKey:c,unit:l,formatter:f,name:s||c,color:Ws(r),value:Us(a,c),type:h,payload:a})]):n}),[])}},{key:"getFormatItems",value:function(e,t){var n=this,r=t.graphicalItems,i=t.stackGroups,a=t.offset,c=t.updateId,s=t.dataStartIndex,l=t.dataEndIndex,f=e.barSize,p=e.layout,h=e.barGap,d=e.barCategoryGap,y=e.maxBarSize,m=this.constructor.getAxisNameByLayout(p),g=m.numericAxisName,v=m.cateAxisName,b=this.constructor.hasBar(r),w=b&&function(e){var t=e.barSize,n=e.stackGroups,r=void 0===n?{}:n;if(!r)return{};for(var o={},i=Object.keys(r),a=0,u=i.length;a=0}));if(y&&y.length){var m=y[0].props.barSize,g=y[0].props[d];o[g]||(o[g]=[]),o[g].push({item:y[0],stackList:y.slice(1),barSize:nt()(m)?t:m})}}return o}({barSize:f,stackGroups:i}),x=[];return r.forEach((function(r,f){var m,O,E,_,k=n.constructor.getDisplayedData(e,{dataStartIndex:s,dataEndIndex:l},r),S=r.props,j=S.dataKey,T=S.maxBarSize,P=r.props["".concat(g,"Id")],A=r.props["".concat(v,"Id")],C=u.reduce((function(e,n){var o,i=t["".concat(n.axisType,"Map")],a=r.props["".concat(n.axisType,"Id")],u=i&&i[a];return Mh({},e,(Nh(o={},n.axisType,u),Nh(o,"".concat(n.axisType,"Ticks"),$s(u)),o))}),{}),M=C[v],N=C["".concat(v,"Ticks")],I=i&&i[P]&&i[P].hasStack&&function(e,t){var n=e.props.stackId;if(vt(n)){var r=t[n];if(r&&r.items.length){for(var o=-1,i=0,a=r.items.length;i=0?r.stackedData[o]:null}}return null}(r,i[P].stackGroups),D=al(M,N),R=nt()(T)?y:T,L=b&&function(e){var t=e.barGap,n=e.barCategoryGap,r=e.bandSize,o=e.sizeList,i=void 0===o?[]:o,a=e.maxBarSize,u=i.length;if(u<1)return null;var c,s=xt(t,r,0,!0);if(i[0].barSize===+i[0].barSize){var l=!1,f=r/u,p=i.reduce((function(e,t){return e+t.barSize||0}),0);(p+=(u-1)*s)>=r&&(p-=(u-1)*s,s=0),p>=r&&f>0&&(l=!0,p=u*(f*=.9));var h={offset:((r-p)/2>>0)-s,size:0};c=i.reduce((function(e,t){var n=[].concat(Rs(e),[{item:t.item,position:{offset:h.offset+h.size+s,size:l?f:t.barSize}}]);return h=n[n.length-1].position,t.stackList&&t.stackList.length&&t.stackList.forEach((function(e){n.push({item:e,position:h})})),n}),[])}else{var d=xt(n,r,0,!0);r-2*d-(u-1)*s<=0&&(s=0);var y=(r-2*d-(u-1)*s)/u;y>1&&(y>>=0);var m=a===+a?Math.min(y,a):y;c=i.reduce((function(e,t,n){var r=[].concat(Rs(e),[{item:t.item,position:{offset:d+(y+s)*n+(y-m)/2,size:m}}]);return t.stackList&&t.stackList.length&&t.stackList.forEach((function(e){r.push({item:e,position:r[r.length-1].position})})),r}),[])}return c}({barGap:h,barCategoryGap:d,bandSize:D,sizeList:w[A],maxBarSize:R}),F=r&&r.type&&r.type.getComposedData;F&&x.push({props:Mh({},F(Mh({},C,{displayedData:k,props:e,dataKey:j,item:r,bandSize:D,barPosition:L,offset:a,stackedData:I,layout:p,dataStartIndex:s,dataEndIndex:l,onItemMouseLeave:Ks(n.handleItemMouseLeave,null,r.props.onMouseLeave),onItemMouseEnter:Ks(n.handleItemMouseEnter,null,r.props.onMouseEnter)})),(m={key:r.key||"item-".concat(f)},Nh(m,g,C[g]),Nh(m,v,C[v]),Nh(m,"animationId",c),m)),childIndex:(O=r,E=e.children,_=-1,o.Children.forEach(E,(function(e,t){e===O&&(_=t)})),_),item:r})})),x}},{key:"getCursorRectangle",value:function(){var e=this.props.layout,t=this.state,n=t.activeCoordinate,r=t.offset,o=t.tooltipAxisBandSize,i=o/2;return{stroke:"none",fill:"#ccc",x:"horizontal"===e?n.x-i:r.left+.5,y:"horizontal"===e?r.top+.5:n.y-i,width:"horizontal"===e?o:r.width-1,height:"horizontal"===e?r.height-1:o}}},{key:"getCursorPoints",value:function(){var e,t,n,r,o=this.props.layout,i=this.state,a=i.activeCoordinate,u=i.offset;if("horizontal"===o)n=e=a.x,t=u.top,r=u.top+u.height;else if("vertical"===o)r=t=a.y,e=u.left,n=u.left+u.width;else if(!nt()(a.cx)||!nt()(a.cy)){if("centric"!==o){var c=a.cx,s=a.cy,l=a.radius,f=a.startAngle,p=a.endAngle;return{points:[hl(c,s,l,f),hl(c,s,l,p)],cx:c,cy:s,radius:l,startAngle:f,endAngle:p}}var h=a.cx,d=a.cy,y=a.innerRadius,m=a.outerRadius,g=a.angle,v=hl(h,d,y,g),b=hl(h,d,m,g);e=v.x,t=v.y,n=b.x,r=b.y}return[{x:e,y:t},{x:n,y:r}]}},{key:"calculateTooltipPos",value:function(e){var t=this.props.layout;return"horizontal"===t?e.x:"vertical"===t?e.y:"centric"===t?e.angle:e.radius}},{key:"inRange",value:function(e,t){var n=this.props.layout;if("horizontal"===n||"vertical"===n){var r=this.state.offset;return e>=r.left&&e<=r.left+r.width&&t>=r.top&&t<=r.top+r.height?{x:e,y:t}:null}var o=this.state,i=o.angleAxisMap,a=o.radiusAxisMap;if(i&&a){var u=Ot(i);return ml({x:e,y:t},u)}return null}},{key:"parseEventsOfWrapper",value:function(){var e=this.props.children,t=Dt(e,Wo)&&"axis"===a?{onMouseEnter:this.handleMouseEnter,onMouseMove:this.handleMouseMove,onMouseLeave:this.handleMouseLeave,onTouchMove:this.handleTouchMove,onTouchStart:this.handleTouchStart,onTouchEnd:this.handleTouchEnd}:{};return Mh({},Ft(this.props,this.handleOuterEvent),{},t)}},{key:"updateStateOfAxisMapsOffsetAndStackGroups",value:function(e){var r=this,o=e.props,i=e.dataStartIndex,a=e.dataEndIndex,c=e.updateId;if(!Bt({props:o}))return null;var l=o.children,f=o.layout,p=o.stackOffset,h=o.data,d=o.reverseStackOrder,y=this.constructor.getAxisNameByLayout(f),m=y.numericAxisName,g=y.cateAxisName,v=It(l,n),b=function(e,t,n,r,o,i){if(!e)return null;var a=(i?t.reverse():t).reduce((function(e,t){var o=t.props,i=o.stackId;if(o.hide)return e;var a=t.props[n],u=e[a]||{hasStack:!1,stackGroups:{}};if(vt(i)){var c=u.stackGroups[i]||{numericAxisId:n,cateAxisId:r,items:[]};c.items.push(t),u.hasStack=!0,u.stackGroups[i]=c}else u.stackGroups[wt("_stackId_")]={numericAxisId:n,cateAxisId:r,items:[t]};return Fs({},e,zs({},a,u))}),{});return Object.keys(a).reduce((function(t,i){var u=a[i];return u.hasStack&&(u.stackGroups=Object.keys(u.stackGroups).reduce((function(t,i){var a=u.stackGroups[i];return Fs({},t,zs({},i,{numericAxisId:n,cateAxisId:r,items:a.items,stackedData:Zs(e,a.items,o)}))}),{})),Fs({},t,zs({},i,u))}),{})}(h,v,"".concat(m,"Id"),"".concat(g,"Id"),p,d),w=u.reduce((function(e,t){return Mh({},e,Nh({},"".concat(t.axisType,"Map"),r.getAxisMap(o,Mh({},t,{graphicalItems:v,stackGroups:t.axisType===m&&b,dataStartIndex:i,dataEndIndex:a}))))}),{}),x=this.calculateOffset(Mh({},w,{props:o,graphicalItems:v}));Object.keys(w).forEach((function(e){w[e]=s(o,w[e],x,e.replace("Map",""),t)}));var O=w["".concat(g,"Map")],E=this.tooltipTicksGenerator(O),_=this.getFormatItems(o,Mh({},w,{dataStartIndex:i,dataEndIndex:a,updateId:c,graphicalItems:v,stackGroups:b,offset:x}));return Mh({formatedGraphicalItems:_,graphicalItems:v,offset:x,stackGroups:b},E,{},w)}},{key:"addListener",value:function(){kh.on(Sh,this.handleReceiveSyncEvent),kh.setMaxListeners&&kh._maxListeners&&kh.setMaxListeners(kh._maxListeners+1)}},{key:"removeListener",value:function(){kh.removeListener(Sh,this.handleReceiveSyncEvent),kh.setMaxListeners&&kh._maxListeners&&kh.setMaxListeners(kh._maxListeners-1)}},{key:"calculateOffset",value:function(e){var t=e.props,n=e.graphicalItems,r=e.xAxisMap,o=void 0===r?{}:r,i=e.yAxisMap,a=void 0===i?{}:i,u=t.width,c=t.height,s=t.children,l=t.margin||{},f=Dt(s,Tp),p=Dt(s,ir),h=Object.keys(a).reduce((function(e,t){var n=a[t],r=n.orientation;return n.mirror||n.hide?e:Mh({},e,Nh({},r,e[r]+n.width))}),{left:l.left||0,right:l.right||0}),d=Object.keys(o).reduce((function(e,t){var n=o[t],r=n.orientation;return n.mirror||n.hide?e:Mh({},e,Nh({},r,e[r]+n.height))}),{top:l.top||0,bottom:l.bottom||0}),y=Mh({},d,{},h),m=y.bottom;return f&&(y.bottom+=f.props.height||Tp.defaultProps.height),p&&this.legendInstance&&(y=function(e,t,n,r){var o=n.children,i=n.width,a=n.height,u=n.margin,c=i-(u.left||0)-(u.right||0),s=a-(u.top||0)-(u.bottom||0),l=Hs({children:o,items:t,legendWidth:c,legendHeight:s}),f=e;if(l){var p=r||{},h=l.align,d=l.verticalAlign,y=l.layout;("vertical"===y||"horizontal"===y&&"center"===d)&>(e[h])&&(f=Fs({},e,zs({},h,f[h]+(p.width||0)))),("horizontal"===y||"vertical"===y&&"center"===h)&>(e[d])&&(f=Fs({},e,zs({},d,f[d]+(p.height||0))))}return f}(y,n,t,this.legendInstance.getBBox())),Mh({brushBottom:m},y,{width:u-y.left-y.right,height:c-y.top-y.bottom})}},{key:"triggerSyncEvent",value:function(e){var t=this.props.syncId;nt()(t)||kh.emit(Sh,t,this.uniqueChartId,e)}},{key:"filterFormatItem",value:function(e,t,n){for(var r=this.state.formatedGraphicalItems,o=0,i=r.length;o=0}))},p.getDisplayedData=function(e,t,n){var r=t.graphicalItems,o=t.dataStartIndex,i=t.dataEndIndex,a=(r||[]).reduce((function(e,t){var n=t.props.data;return n&&n.length?[].concat(Ah(e),Ah(n)):e}),[]);if(a&&a.length>0)return a;if(n&&n.props&&n.props.data&&n.props.data.length>0)return n.props.data;var u=e.data;return u&&u.length&>(o)&>(i)?u.slice(o,i+1):[]},p}({chartName:"LineChart",GraphicalChild:tf,axisComponents:[{axisType:"xAxis",AxisComp:sf},{axisType:"yAxis",AxisComp:mf}],formatAxisMap:function(e,t,n,r,o){var i=e.width,a=e.height,u=e.layout,c=Object.keys(t),s={left:n.left,leftMirror:n.left,right:i-n.right,rightMirror:i-n.right,top:n.top,topMirror:n.top,bottom:a-n.bottom,bottomMirror:a-n.bottom};return c.reduce((function(e,i){var a,c,l,f,p=t[i],h=p.orientation,d=p.domain,y=p.padding,m=void 0===y?{}:y,g=p.mirror,v=p.reversed,b="".concat(h).concat(g?"Mirror":"");a="xAxis"===r?[n.left+(m.left||0),n.left+n.width-(m.right||0)]:"yAxis"===r?"horizontal"===u?[n.top+n.height-(m.bottom||0),n.top+(m.top||0)]:[n.top+(m.top||0),n.top+n.height-(m.bottom||0)]:p.range,v&&(a=[a[1],a[0]]);var w=Xs(p,o),x=w.scale,O=w.realScaleType;x.domain(d).range(a),Js(x);var E=el(x,Rp({},p,{realScaleType:O}));"xAxis"===r?(f="top"===h&&!g||"bottom"===h&&g,c=n.left,l=s[b]-f*p.height):"yAxis"===r&&(f="left"===h&&!g||"right"===h&&g,c=s[b]-f*p.width,l=n.top);var _=Rp({},p,{},E,{realScaleType:O,x:c,y:l,scale:x,width:"xAxis"===r?n.width:p.width,height:"yAxis"===r?n.height:p.height});return _.bandSize=al(_,E),p.hide||"xAxis"!==r?p.hide||(s[b]+=(f?-1:1)*_.width):s[b]+=(f?-1:1)*_.height,Rp({},e,Lp({},i,_))}),{})}}),Bh=n(3);n(37);const Wh=1e3,Hh=500;class Gh extends i.a.Component{render(){const{timelineCred:e,displayedNodes:t}=this.props,n=e.intervals(),r=[n[0].startTimeMs,n[n.length-1].endTimeMs],o=n.map((r,o)=>{const i=new Map;for(const r of t){const{cred:t}=Bh.a(e.credNode(r)),a=0===o?0:t[o-1],u=o===n.length-1?0:t[o+1],c=t[o],s=Math.max(a,u,c)<.1?null:c;i.set(r,s)}return{score:i,interval:r}}),a=function e(){var t=new Map,n=[],r=[],o=We;function i(e){var i=e+"",a=t.get(i);if(!a){if(o!==We)return o;t.set(i,a=n.push(e))}return r[(a-1)%r.length]}return i.domain=function(e){if(!arguments.length)return n.slice();n=[],t=new Map;for(const r of e){const e=r+"";t.has(e)||t.set(e,n.push(r))}return i},i.range=function(e){return arguments.length?(r=Array.from(e),i):r.slice()},i.unknown=function(e){return arguments.length?(o=e,i):o},i.copy=function(){return e(n,r).unknown(o)},Be.apply(i,arguments),i}(t,f),u=t.map(t=>{const n=Bh.a(e.weightedGraph().graph.node(t)).description,r=l()(n);return i.a.createElement(tf,{type:"monotone",dot:!1,key:t,stroke:a(t),dataKey:e=>e.score.get(t),name:r})}),c=T("%b"),s=T("%Y");const p=Ge.range(...r);return i.a.createElement(Uh,{width:Wh,height:Hh,data:o},i.a.createElement(ei,{strokeDasharray:"3 3"}),i.a.createElement(sf,{dataKey:e=>e.interval.startTimeMs,type:"number",domain:r,tickFormatter:function(e){const t=new Date(e);return x(t)-e.value,labelFormatter:e=>"Week of ".concat(T("%B %e, %Y")(e))}),i.a.createElement(ir,null))}}n.d(t,"a",(function(){return Yh}));const qh=100,Vh=6;class Yh extends i.a.Component{render(){const{selectedNodeFilter:e,timelineCred:t}=this.props,n=(()=>null==e?t.userNodes():t.credSortedNodes([e]))(),r=n.slice(0,qh),o=n.slice(0,Vh).map(e=>e.node.address),a=Object(c.a)(n.map(e=>e.total));return i.a.createElement("div",{style:{width:1e3,margin:"0 auto"}},i.a.createElement(Gh,{timelineCred:t,displayedNodes:o}),i.a.createElement("table",{style:{width:600,margin:"0 auto",padding:"20px 10px"}},i.a.createElement("thead",null,i.a.createElement("tr",null,i.a.createElement("th",null,"Contributor"),i.a.createElement("th",{style:{textAlign:"right"}},"Cred"),i.a.createElement("th",{style:{textAlign:"right"}},"% Total"))),i.a.createElement("tbody",null,r.map(e=>{let{node:t,total:n}=e;return i.a.createElement("tr",{key:t.address},i.a.createElement("td",null,i.a.createElement(u.a,{renderers:{paragraph:"span"},source:t.description})),i.a.createElement("td",{style:{textAlign:"right"}},Object(qe.a)(".1d")(n)),i.a.createElement("td",{style:{textAlign:"right"}},Object(qe.a)(".1%")(n/a)))}))))}}},function(e,t,n){var r,o=n(510),i=n(511),a=n(513),u=100,c=/(\+|\-|\*|\\|[^a-z]|)(\s*)(\()/g;e.exports=function(e,t){function n(e,i,s){if(r++>u)throw r=0,new Error("Call stack overflow for "+s);if(""===e)throw new Error(i+"(): '"+s+"' must contain a non-whitespace string");var l=function(e){var t=[],n=[],r=/[\.0-9]([%a-z]+)/gi,o=r.exec(e);for(;o;)o&&o[1]&&(-1===n.indexOf(o[1].toLowerCase())&&(t.push(o[1]),n.push(o[1].toLowerCase())),o=r.exec(e));return t}(e=function(e,t){e=e.replace(/((?:\-[a-z]+\-)?calc)/g,"");var r,i="",a=e;for(;r=c.exec(a);){r[0].index>0&&(i+=a.substring(0,r[0].index));var u=o("(",")",a.substring([0].index));if(""===u.body)throw new Error("'"+e+"' must contain a non-whitespace string");var s=n(u.body,"",t);i+=u.pre+s,a=u.post}return i+a}(e,s));if(l.length>1||e.indexOf("var(")>-1)return i+"("+e+")";var f=l[0]||"";"%"===f&&(e=e.replace(/\b[0-9\.]+%/g,(function(e){return.01*parseFloat(e.slice(0,-1))})));var p,h=e.replace(new RegExp(f,"gi"),"");try{p=a.eval(h)}catch(t){return i+"("+e+")"}return"%"===f&&(p*=100),(i.length||"%"===f)&&(p=Math.round(p*t)/t),p+=f}return r=0,t=Math.pow(10,void 0===t?5:t),e=e.replace(/\n+/g," "),i(e,/((?:\-[a-z]+\-)?calc)\(/,n)}},function(e,t,n){"use strict";n.d(t,"a",(function(){return o})),n.d(t,"b",(function(){return i}));var r=n(45);class o{constructor(e){var t,n,o;o=void 0,(n="_root")in(t=this)?Object.defineProperty(t,n,{value:o,enumerable:!0,configurable:!0,writable:!0}):t[n]=o,this._root=null==e?e:Object(r.a)(e)}_getRoot(){if(null==this._root)throw new Error("asset root path uninitialized");return this._root}resolve(e){if(Object(r.a)(e.replace(/^\/+/,"")).startsWith(".."))throw new Error("path outside site root: "+e);return Object(r.a)("".concat(this._getRoot(),"/").concat(e))}}function i(e){const t=Object(r.a)(e);if("/"!==t[0])throw new Error("expected absolute path: "+JSON.stringify(e));const n=(t.match(/\//g)||[]).length;return Object(r.a)(new Array(n-1).fill("..").join("/"))}},function(e,t,n){"use strict";function r(e){const t=e.join("").split("\n").filter(e=>0!==e.trim().length).map(e=>e.length-e.trimLeft().length),n=Math.min.apply(null,t),r=[];for(let t=0;t0===t||r>0?e.substr(n):e).join("\n");r.push(o),t<(arguments.length<=1?0:arguments.length-1)&&r.push(t+1<1||arguments.length<=t+1?void 0:arguments[t+1])}return r.join("")}n.d(t,"a",(function(){return r}))},function(e,t,n){"use strict";t.__esModule=!0;t.canUseDOM=!("undefined"==typeof window||!window.document||!window.document.createElement)},function(e,t,n){"use strict";t.__esModule=!0,t.go=t.replaceLocation=t.pushLocation=t.startListener=t.getUserConfirmation=t.getCurrentLocation=void 0;var r=n(47),o=n(80),i=n(151),a=n(34),u=n(105),c=u.canUseDOM&&!(0,o.supportsPopstateOnHashchange)(),s=function(e){var t=e&&e.key;return(0,r.createLocation)({pathname:window.location.pathname,search:window.location.search,hash:window.location.hash,state:t?(0,i.readState)(t):void 0},void 0,t)},l=t.getCurrentLocation=function(){var e=void 0;try{e=window.history.state||{}}catch(t){e={}}return s(e)},f=(t.getUserConfirmation=function(e,t){return t(window.confirm(e))},t.startListener=function(e){var t=function(t){(0,o.isExtraneousPopstateEvent)(t)||e(s(t.state))};(0,o.addEventListener)(window,"popstate",t);var n=function(){return e(l())};return c&&(0,o.addEventListener)(window,"hashchange",n),function(){(0,o.removeEventListener)(window,"popstate",t),c&&(0,o.removeEventListener)(window,"hashchange",n)}},function(e,t){var n=e.state,r=e.key;void 0!==n&&(0,i.saveState)(r,n),t({key:r},(0,a.createPath)(e))});t.pushLocation=function(e){return f(e,(function(e,t){return window.history.pushState(e,null,t)}))},t.replaceLocation=function(e){return f(e,(function(e,t){return window.history.replaceState(e,null,t)}))},t.go=function(e){e&&window.history.go(e)}},function(e,t,n){"use strict";t.__esModule=!0;var r,o=n(259),i=n(34),a=n(108),u=(r=a)&&r.__esModule?r:{default:r},c=n(69),s=n(47);t.default=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.getCurrentLocation,n=e.getUserConfirmation,r=e.pushLocation,a=e.replaceLocation,l=e.go,f=e.keyLength,p=void 0,h=void 0,d=[],y=[],m=[],g=function(){return h&&h.action===c.POP?m.indexOf(h.key):p?m.indexOf(p.key):-1},v=function(e){var t=g();(p=e).action===c.PUSH?m=[].concat(m.slice(0,t+1),[p.key]):p.action===c.REPLACE&&(m[t]=p.key),y.forEach((function(e){return e(p)}))},b=function(e){return d.push(e),function(){return d=d.filter((function(t){return t!==e}))}},w=function(e){return y.push(e),function(){return y=y.filter((function(t){return t!==e}))}},x=function(e,t){(0,o.loopAsync)(d.length,(function(t,n,r){(0,u.default)(d[t],e,(function(e){return null!=e?r(e):n()}))}),(function(e){n&&"string"==typeof e?n(e,(function(e){return t(!1!==e)})):t(!1!==e)}))},O=function(e){p&&(0,s.locationsAreEqual)(p,e)||h&&(0,s.locationsAreEqual)(h,e)||(h=e,x(e,(function(t){if(h===e)if(h=null,t){if(e.action===c.PUSH){var n=(0,i.createPath)(p);(0,i.createPath)(e)===n&&(0,s.statesAreEqual)(p.state,e.state)&&(e.action=c.REPLACE)}e.action===c.POP?v(e):e.action===c.PUSH?!1!==r(e)&&v(e):e.action===c.REPLACE&&!1!==a(e)&&v(e)}else if(p&&e.action===c.POP){var o=m.indexOf(p.key),u=m.indexOf(e.key);-1!==o&&-1!==u&&l(o-u)}})))},E=function(e){return O(P(e,c.PUSH))},_=function(e){return O(P(e,c.REPLACE))},k=function(){return l(-1)},S=function(){return l(1)},j=function(){return Math.random().toString(36).substr(2,f||6)},T=function(e){return(0,i.createPath)(e)},P=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:j();return(0,s.createLocation)(e,t,n)};return{getCurrentLocation:t,listenBefore:b,listen:w,transitionTo:O,push:E,replace:_,go:l,goBack:k,goForward:S,createKey:j,createPath:i.createPath,createHref:T,createLocation:P}}},function(e,t,n){"use strict";t.__esModule=!0;var r,o=n(31);(r=o)&&r.__esModule;t.default=function(e,t,n){var r=e(t,n);e.length<2&&n(r)}},function(e,t){var n,r,o=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function u(e){if(n===setTimeout)return setTimeout(e,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(e){n=i}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var c,s=[],l=!1,f=-1;function p(){l&&c&&(l=!1,c.length?s=c.concat(s):f=-1,s.length&&h())}function h(){if(!l){var e=u(p);l=!0;for(var t=s.length;t;){for(c=s,s=[];++f1)for(var n=1;n=55296&&ge<=57343||ge>1114111?(W(R,Q),U=l(_)):U in o?(W(D,Q),U=o[U]):(G="",F(U)&&W(D,Q),U>65535&&(G+=l((U-=65536)>>>10|55296),U=56320|1023&U),U=G+l(U))):$!==k&&W(N,Q)),U?(be(),X=ve(),fe=Z-1,he+=Z-Y+1,me.push(U),(J=ve()).offset++,re&&re.call(ae,U,{start:X,end:J},e.slice(Y-1,Z)),X=J):(p=e.slice(Y-1,Z),ye+=p,he+=p.length,fe=Z-1)}else 10===z&&(de++,pe++,he=0),z==z?(ye+=l(z),he++):be();var ge;return me.join("");function ve(){return{line:de,column:he,offset:fe+(ce.offset||0)}}function be(){ye&&(me.push(ye),ne&&ne.call(ie,ye,{start:X,end:ve()}),ye="")}}(e,a)};var s={}.hasOwnProperty,l=String.fromCharCode,f=Function.prototype,p={warning:null,reference:null,text:null,warningContext:null,referenceContext:null,textContext:null,position:{},additional:null,attribute:!1,nonTerminated:!0},h=9,d=10,y=12,m=32,g=38,v=59,b=60,w=61,x=35,O=88,E=120,_=65533,k="named",S="hexadecimal",j="decimal",T={};T[S]=16,T[j]=10;var P={};P[k]=u,P[j]=i,P[S]=a;var A=1,C=2,M=3,N=4,I=5,D=6,R=7,L={};function F(e){return e>=1&&e<=8||11===e||e>=13&&e<=31||e>=127&&e<=159||e>=64976&&e<=65007||65535==(65535&e)||65534==(65535&e)}L[A]="Named character references must be terminated by a semicolon",L[C]="Numeric character references must be terminated by a semicolon",L[M]="Named character references cannot be empty",L[N]="Numeric character references cannot be empty",L[I]="Named character references must be known",L[D]="Numeric character references cannot be disallowed",L[R]="Numeric character references cannot be outside the permissible Unicode range"},function(e,t,n){"use strict"; +/*! + * repeat-string + * + * Copyright (c) 2014-2015, Jon Schlinkert. + * Licensed under the MIT License. + */var r,o="";e.exports=function(e,t){if("string"!=typeof e)throw new TypeError("expected a string");if(1===t)return e;if(2===t)return e+e;var n=e.length*t;if(r!==e||void 0===r)r=e,o="";else if(o.length>=n)return o.substr(0,n);for(;n>o.length&&t>1;)1&t&&(o+=e),t>>=1,e+=e;return o=(o+=e).substr(0,n)}},function(e,t,n){"use strict";e.exports=function(e){var t=String(e),n=t.length;for(;t.charAt(--n)===r;);return t.slice(0,n+1)};var r="\n"},function(e,t,n){"use strict";e.exports=function(e,t,n,r){var o,i,a,u,c,s,l=["pedantic","commonmark"],f=l.length,p=e.length,h=-1;for(;++h22025.465794806718||n(10)<22025.465794806718||-2e-17!=n(-2e-17)?function(e){return 0==(e=+e)?e:e>-1e-6&&e<1e-6?e+e*e/2:Math.exp(e)-1}:n},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var r=n(382),o=n(121);e.exports=function(e){return r(o(e))}},function(e,t){e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,n){var r=n(10),o=n(121),i=n(35),a=n(124),u="["+a+"]",c=RegExp("^"+u+u+"*"),s=RegExp(u+u+"*$"),l=function(e,t,n){var o={},u=i((function(){return!!a[e]()||"​…"!="​…"[e]()})),c=o[e]=u?t(f):a[e];n&&(o[n]=c),r(r.P+r.F*u,"String",o)},f=l.trim=function(e,t){return e=String(o(e)),1&t&&(e=e.replace(c,"")),2&t&&(e=e.replace(s,"")),e};e.exports=l},function(e,t){e.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},function(e,t){e.exports=function(e,t){return e===t||e!=e&&t!=t}},function(e,t,n){var r=n(41)(n(24),"Map");e.exports=r},function(e,t,n){var r=n(423),o=n(430),i=n(432),a=n(433),u=n(434);function c(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t-1&&e%1==0&&e-1&&e%1==0&&e<=n}},function(e,t){e.exports=function(e){return function(t){return e(t)}}},function(e,t,n){var r=n(7),o=n(52),i=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,a=/^\w*$/;e.exports=function(e,t){if(r(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!o(e))||(a.test(e)||!i.test(e)||null!=t&&e in Object(t))}},function(e,t,n){"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE){0;try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}}(),e.exports=n(255)},function(e,t,n){"use strict";e.exports=n(265)},function(e,t,n){"use strict";t.__esModule=!0;var r=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};i.canUseDOM||(0,o.default)(!1);var t=e.forceRefresh||!(0,c.supportsHistory)(),n=t?u:a,l=n.getUserConfirmation,f=n.getCurrentLocation,p=n.pushLocation,h=n.replaceLocation,d=n.go,y=(0,s.default)(r({getUserConfirmation:l},e,{getCurrentLocation:f,pushLocation:p,replaceLocation:h,go:d})),m=0,g=void 0,v=function(e,t){1==++m&&(g=a.startListener(y.transitionTo));var n=t?y.listenBefore(e):y.listen(e);return function(){n(),0==--m&&g()}},b=function(e){return v(e,!0)},w=function(e){return v(e,!1)};return r({},y,{listenBefore:b,listen:w})}},function(e,t,n){"use strict";t.__esModule=!0;var r=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};Array.isArray(e)?e={entries:e}:"string"==typeof e&&(e={entries:[e]});var t=function(){var e=y[m],t=(0,a.createPath)(e),n=void 0,o=void 0;e.key&&(n=e.key,o=b(n));var u=(0,a.parsePath)(t);return(0,i.createLocation)(r({},u,{state:o}),void 0,n)},n=function(e){var t=m+e;return t>=0&&t=0&&m{let{navTitle:t,path:n}=e;return f.b(t,e=>o.a.createElement("li",{key:n,className:Object(i.css)(x.navItem,x.navItemRight)},o.a.createElement(u.a,{to:n,styles:[x.navLink]},e)))}),o.a.createElement("li",{className:Object(i.css)(x.navItem,x.navItemRight)},o.a.createElement(u.a,{styles:[x.navLink],href:"https://github.com/sourcecred/sourcecred"},o.a.createElement(c,{altText:"SourceCred Github",className:Object(i.css)(x.navLogoSmall)}))),o.a.createElement("li",{className:Object(i.css)(x.navItem,x.navItemRight)},o.a.createElement(u.a,{styles:[x.navLink],href:"https://twitter.com/sourcecred"},o.a.createElement(s,{altText:"SourceCred Twitter",className:Object(i.css)(x.navLogoSmall)}))),o.a.createElement("li",{className:Object(i.css)(x.navItem,x.navItemRightSmall)},o.a.createElement(u.a,{styles:[x.navLink],href:"https://discordapp.com/invite/tsBTgc9"},o.a.createElement(l,{altText:"Join the SourceCred Discord",className:Object(i.css)(x.navLogoMedium)})))))),o.a.createElement("main",null,this.props.children)),o.a.createElement("footer",{className:Object(i.css)(x.footer)},o.a.createElement("div",{className:Object(i.css)(x.footerWrapper)},o.a.createElement("span",{className:Object(i.css)(x.footerText)},"(",b,") ",o.a.createElement("strong",null,g)))))}}const x=i.StyleSheet.create({footer:{color:"#666",height:30,fontSize:14,position:"relative"},footerWrapper:{textAlign:"right",position:"absolute",bottom:5,width:"100%"},footerText:{marginRight:5},nonFooter:{minHeight:"calc(100vh - ".concat(30,"px)")},nav:{padding:"20px 50px 0 50px",maxWidth:900,margin:"0 auto"},navLinkTitle:{fontSize:24},navItem:{display:"inline-block"},navList:{listStyle:"none",paddingLeft:0,margin:0,display:"flex"},navLink:{fontFamily:"Roboto Condensed",fontSize:18,textDecoration:"none",":hover":{textDecoration:"underline"},":visited:not(:active)":{color:a.a.brand.medium,fill:a.a.brand.medium}},navItemLeft:{flex:1},navItemRight:{marginLeft:20},navItemRightSmall:{marginLeft:15},navLogoSmall:{height:20,width:20},navLogoMedium:{height:25,width:25,transform:"translateY(-1px)"}})},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"getTickValues",{enumerable:!0,get:function(){return r.getTickValues}}),Object.defineProperty(t,"getNiceTickValues",{enumerable:!0,get:function(){return r.getNiceTickValues}}),Object.defineProperty(t,"getTickValuesFixedDomain",{enumerable:!0,get:function(){return r.getTickValuesFixedDomain}});var r=n(508)},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));var r=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function o(e){if(!(t=r.exec(e)))throw new Error("invalid format: "+e);var t;return new i({fill:t[1],align:t[2],sign:t[3],symbol:t[4],zero:t[5],width:t[6],comma:t[7],precision:t[8]&&t[8].slice(1),trim:t[9],type:t[10]})}function i(e){this.fill=void 0===e.fill?" ":e.fill+"",this.align=void 0===e.align?">":e.align+"",this.sign=void 0===e.sign?"-":e.sign+"",this.symbol=void 0===e.symbol?"":e.symbol+"",this.zero=!!e.zero,this.width=void 0===e.width?void 0:+e.width,this.comma=!!e.comma,this.precision=void 0===e.precision?void 0:+e.precision,this.trim=!!e.trim,this.type=void 0===e.type?"":e.type+""}o.prototype=i.prototype,i.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type}},function(e,t,n){var r=n(528),o=n(195),i=n(30);e.exports=function(e,t){var n={};return t=i(t,3),o(e,(function(e,o,i){r(n,o,t(e,o,i))})),n}},,,,function(e,t,n){"use strict";var r=n(150);function o(){}var i=null,a={};function u(e){if("object"!=typeof this)throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("Promise constructor's argument is not a function");this._h=0,this._i=0,this._j=null,this._k=null,e!==o&&h(e,this)}function c(e,t){for(;3===e._i;)e=e._j;if(u._l&&u._l(e),0===e._i)return 0===e._h?(e._h=1,void(e._k=t)):1===e._h?(e._h=2,void(e._k=[e._k,t])):void e._k.push(t);!function(e,t){r((function(){var n=1===e._i?t.onFulfilled:t.onRejected;if(null!==n){var r=function(e,t){try{return e(t)}catch(e){return i=e,a}}(n,e._j);r===a?l(t.promise,i):s(t.promise,r)}else 1===e._i?s(t.promise,e._j):l(t.promise,e._j)}))}(e,t)}function s(e,t){if(t===e)return l(e,new TypeError("A promise cannot be resolved with itself."));if(t&&("object"==typeof t||"function"==typeof t)){var n=function(e){try{return e.then}catch(e){return i=e,a}}(t);if(n===a)return l(e,i);if(n===e.then&&t instanceof u)return e._i=3,e._j=t,void f(e);if("function"==typeof n)return void h(n.bind(t),e)}e._i=1,e._j=t,f(e)}function l(e,t){e._i=2,e._j=t,u._m&&u._m(e,t),f(e)}function f(e){if(1===e._h&&(c(e,e._k),e._k=null),2===e._h){for(var t=0;ta){for(var t=0,n=o.length-i;t>>0}},function(e,t,n){"use strict";var r=n(150),o=[],i=[],a=r.makeRequestCallFromTimer((function(){if(i.length)throw i.shift()}));function u(e){var t;(t=o.length?o.pop():new c).task=e,r(t)}function c(){this.task=null}e.exports=u,c.prototype.call=function(){try{this.task.call()}catch(e){u.onerror?u.onerror(e):(i.push(e),a())}finally{this.task=null,o[o.length]=this}}},function(e,t){},function(e,t,n){(function(e){function n(e,t){for(var n=0,r=e.length-1;r>=0;r--){var o=e[r];"."===o?e.splice(r,1):".."===o?(e.splice(r,1),n++):n&&(e.splice(r,1),n--)}if(t)for(;n--;n)e.unshift("..");return e}function r(e,t){if(e.filter)return e.filter(t);for(var n=[],r=0;r=-1&&!o;i--){var a=i>=0?arguments[i]:e.cwd();if("string"!=typeof a)throw new TypeError("Arguments to path.resolve must be strings");a&&(t=a+"/"+t,o="/"===a.charAt(0))}return(o?"/":"")+(t=n(r(t.split("/"),(function(e){return!!e})),!o).join("/"))||"."},t.normalize=function(e){var i=t.isAbsolute(e),a="/"===o(e,-1);return(e=n(r(e.split("/"),(function(e){return!!e})),!i).join("/"))||i||(e="."),e&&a&&(e+="/"),(i?"/":"")+e},t.isAbsolute=function(e){return"/"===e.charAt(0)},t.join=function(){var e=Array.prototype.slice.call(arguments,0);return t.normalize(r(e,(function(e,t){if("string"!=typeof e)throw new TypeError("Arguments to path.join must be strings");return e})).join("/"))},t.relative=function(e,n){function r(e){for(var t=0;t=0&&""===e[n];n--);return t>n?[]:e.slice(t,n-t+1)}e=t.resolve(e).substr(1),n=t.resolve(n).substr(1);for(var o=r(e.split("/")),i=r(n.split("/")),a=Math.min(o.length,i.length),u=a,c=0;c=1;--i)if(47===(t=e.charCodeAt(i))){if(!o){r=i;break}}else o=!1;return-1===r?n?"/":".":n&&1===r?"/":e.slice(0,r)},t.basename=function(e,t){var n=function(e){"string"!=typeof e&&(e+="");var t,n=0,r=-1,o=!0;for(t=e.length-1;t>=0;--t)if(47===e.charCodeAt(t)){if(!o){n=t+1;break}}else-1===r&&(o=!1,r=t+1);return-1===r?"":e.slice(n,r)}(e);return t&&n.substr(-1*t.length)===t&&(n=n.substr(0,n.length-t.length)),n},t.extname=function(e){"string"!=typeof e&&(e+="");for(var t=-1,n=0,r=-1,o=!0,i=0,a=e.length-1;a>=0;--a){var u=e.charCodeAt(a);if(47!==u)-1===r&&(o=!1,r=a+1),46===u?-1===t?t=a:1!==i&&(i=1):-1!==t&&(i=-1);else if(!o){n=a+1;break}}return-1===t||-1===r||0===i||1===i&&t===r-1&&t===n+1?"":e.slice(t,r)};var o="b"==="ab".substr(-1)?function(e,t,n){return e.substr(t,n)}:function(e,t,n){return t<0&&(t=e.length+t),e.substr(t,n)}}).call(this,n(109))},function(e,t,n){"use strict";e.exports=function(e){var t="string"==typeof e?e.charCodeAt(0):e;return t>=97&&t<=122||t>=65&&t<=90}},function(e,t,n){"use strict";e.exports={position:!0,gfm:!0,commonmark:!1,footnotes:!1,pedantic:!1,blocks:n(305)}},function(e,t,n){"use strict";e.exports=function(e){var t,n=0,o=0,i=e.charAt(n),a={};for(;i in r;)t=r[i],o+=t,t>1&&(o=Math.floor(o/t)*t),a[o]=n,i=e.charAt(++n);return{indent:o,stops:a}};var r={" ":1,"\t":4}},function(e,t,n){"use strict";var r="<[A-Za-z][A-Za-z0-9\\-]*(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^\"'=<>`\\u0000-\\u0020]+|'[^']*'|\"[^\"]*\"))?)*\\s*\\/?>",o="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>";t.openCloseTag=new RegExp("^(?:"+r+"|"+o+")"),t.tag=new RegExp("^(?:"+r+"|"+o+"|\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e|<[?].*?[?]>|]*>|)")},function(e,t,n){"use strict";e.exports=function(e,t){return e.indexOf("<",t)}},function(e,t,n){"use strict";e.exports=function(e,t){var n=e.indexOf("[",t),r=e.indexOf("![",t);if(-1===r)return n;return n-1e-8&&e<1e-8?e-e*e/2:Math.log(1+e)}},function(e,t,n){var r=n(381),o=n(165),i=n(120),a=n(116),u=n(85),c=n(163),s=Object.getOwnPropertyDescriptor;t.f=n(50)?s:function(e,t){if(e=i(e),t=a(t,!0),c)try{return s(e,t)}catch(e){}if(u(e,t))return o(!r.f.call(e,t),e[t])}},function(e,t,n){var r=n(85),o=n(120),i=n(384)(!1),a=n(173)("IE_PROTO");e.exports=function(e,t){var n,u=o(e),c=0,s=[];for(n in u)n!=a&&r(u,n)&&s.push(n);for(;t.length>c;)r(u,n=t[c++])&&(~i(s,n)||s.push(n));return s}},function(e,t,n){var r=n(168)("keys"),o=n(167);e.exports=function(e){return r[e]||(r[e]=o(e))}},function(e,t,n){var r=n(119);e.exports=function(e,t){if("number"!=typeof e&&"Number"!=r(e))throw TypeError(t);return+e}},function(e,t,n){var r=n(49),o=Math.floor;e.exports=function(e){return!r(e)&&isFinite(e)&&o(e)===e}},function(e,t,n){(function(t){var n="object"==typeof t&&t&&t.Object===Object&&t;e.exports=n}).call(this,n(46))},function(e,t,n){var r=n(87),o=n(414),i=n(415),a=n(416),u=n(417),c=n(418);function s(e){var t=this.__data__=new r(e);this.size=t.size}s.prototype.clear=o,s.prototype.delete=i,s.prototype.get=a,s.prototype.has=u,s.prototype.set=c,e.exports=s},function(e,t){var n=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return n.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},function(e,t,n){var r=n(129),o=n(180),i=n(130),a=1,u=2;e.exports=function(e,t,n,c,s,l){var f=n&a,p=e.length,h=t.length;if(p!=h&&!(f&&h>p))return!1;var d=l.get(e);if(d&&l.get(t))return d==t;var y=-1,m=!0,g=n&u?new r:void 0;for(l.set(e,t),l.set(t,e);++y-1}},function(e,t){e.exports=function(e,t,n,r){for(var o=e.length,i=n+(r?1:-1);r?i--:++i=0||(o[n]=e[n]);return o}(t,["children"]);if(delete r.in,delete r.mountOnEnter,delete r.unmountOnExit,delete r.appear,delete r.enter,delete r.exit,delete r.timeout,delete r.addEndListener,delete r.onEnter,delete r.onEntering,delete r.onEntered,delete r.onExit,delete r.onExiting,delete r.onExited,"function"==typeof n)return n(e,r);var i=o.default.Children.only(n);return o.default.cloneElement(i,r)},r}(o.default.Component);function h(){}p.contextTypes={transitionGroup:r.object},p.childContextTypes={transitionGroup:function(){}},p.propTypes={},p.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:h,onEntering:h,onEntered:h,onExit:h,onExiting:h,onExited:h},p.UNMOUNTED=0,p.EXITED=1,p.ENTERING=2,p.ENTERED=3,p.EXITING=4;var d=(0,a.polyfill)(p);t.default=d},function(e,t,n){"use strict";function r(){var e=this.constructor.getDerivedStateFromProps(this.props,this.state);null!=e&&this.setState(e)}function o(e){this.setState(function(t){var n=this.constructor.getDerivedStateFromProps(e,t);return null!=n?n:null}.bind(this))}function i(e,t){try{var n=this.props,r=this.state;this.props=e,this.state=t,this.__reactInternalSnapshotFlag=!0,this.__reactInternalSnapshot=this.getSnapshotBeforeUpdate(n,r)}finally{this.props=n,this.state=r}}function a(e){var t=e.prototype;if(!t||!t.isReactComponent)throw new Error("Can only polyfill class components");if("function"!=typeof e.getDerivedStateFromProps&&"function"!=typeof t.getSnapshotBeforeUpdate)return e;var n=null,a=null,u=null;if("function"==typeof t.componentWillMount?n="componentWillMount":"function"==typeof t.UNSAFE_componentWillMount&&(n="UNSAFE_componentWillMount"),"function"==typeof t.componentWillReceiveProps?a="componentWillReceiveProps":"function"==typeof t.UNSAFE_componentWillReceiveProps&&(a="UNSAFE_componentWillReceiveProps"),"function"==typeof t.componentWillUpdate?u="componentWillUpdate":"function"==typeof t.UNSAFE_componentWillUpdate&&(u="UNSAFE_componentWillUpdate"),null!==n||null!==a||null!==u){var c=e.displayName||e.name,s="function"==typeof e.getDerivedStateFromProps?"getDerivedStateFromProps()":"getSnapshotBeforeUpdate()";throw Error("Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n"+c+" uses "+s+" but also contains the following legacy lifecycles:"+(null!==n?"\n "+n:"")+(null!==a?"\n "+a:"")+(null!==u?"\n "+u:"")+"\n\nThe above lifecycles should be removed. Learn more about this warning here:\nhttps://fb.me/react-async-component-lifecycle-hooks")}if("function"==typeof e.getDerivedStateFromProps&&(t.componentWillMount=r,t.componentWillReceiveProps=o),"function"==typeof t.getSnapshotBeforeUpdate){if("function"!=typeof t.componentDidUpdate)throw new Error("Cannot polyfill getSnapshotBeforeUpdate() for components that do not define componentDidUpdate() on the prototype");t.componentWillUpdate=i;var l=t.componentDidUpdate;t.componentDidUpdate=function(e,t,n){var r=this.__reactInternalSnapshotFlag?this.__reactInternalSnapshot:n;l.call(this,e,t,r)}}return e}n.r(t),n.d(t,"polyfill",(function(){return a})),r.__suppressDeprecationWarning=!0,o.__suppressDeprecationWarning=!0,i.__suppressDeprecationWarning=!0},function(e,t,n){"use strict";t.__esModule=!0,t.classNamesShape=t.timeoutsShape=void 0;var r;(r=n(0))&&r.__esModule;t.timeoutsShape=null;t.classNamesShape=null},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var r=u(n(0)),o=u(n(1)),i=n(197),a=n(499);function u(e){return e&&e.__esModule?e:{default:e}}function c(){return(c=Object.assign||function(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,["component","childFactory"]),i=l(this.state.children).map(n);return delete r.appear,delete r.enter,delete r.exit,null===t?i:o.default.createElement(t,r,i)},r}(o.default.Component);f.childContextTypes={transitionGroup:r.default.object.isRequired},f.propTypes={},f.defaultProps={component:"div",childFactory:function(e){return e}};var p=(0,i.polyfill)(f);t.default=p,e.exports=t.default},function(e,t,n){var r=n(181),o=n(500);e.exports=function e(t,n,i,a,u){var c=-1,s=t.length;for(i||(i=o),u||(u=[]);++c0&&i(l)?n>1?e(l,n-1,i,a,u):r(u,l):a||(u[u.length]=l)}return u}},function(e,t,n){var r=n(93),o=n(51);e.exports=function(e,t){var n=-1,i=o(e)?Array(e.length):[];return r(e,(function(e,r,o){i[++n]=t(e,r,o)})),i}},function(e,t,n){var r=n(52);e.exports=function(e,t,n){for(var o=-1,i=e.length;++o(u=(a=Math.ceil(p/m))>u?a+1:u+1)&&(i=u,r.length=1),r.reverse();i--;)r.push(0);r.reverse()}for((u=s.length)-(i=l.length)<0&&(i=u,r=l,l=s,s=r),n=0;i;)n=(s[--i]=s[i]+l[i]+n)/y|0,s[i]%=y;for(n&&(s.unshift(n),++o),u=s.length;0==s[--u];)s.pop();return t.d=s,t.e=o,c?P(t,p):t}function w(e,t,n){if(e!==~~e||en)throw Error(l+e)}function x(e){var t,n,r,o=e.length-1,i="",a=e[0];if(o>0){for(i+=a,t=1;te.e^i.s<0?1:-1;for(t=0,n=(r=i.d.length)<(o=e.d.length)?r:o;te.d[t]^i.s<0?1:-1;return r===o?0:r>o^i.s<0?1:-1},v.decimalPlaces=v.dp=function(){var e=this,t=e.d.length-1,n=(t-e.e)*m;if(t=e.d[t])for(;t%10==0;t/=10)n--;return n<0?0:n},v.dividedBy=v.div=function(e){return O(this,new this.constructor(e))},v.dividedToIntegerBy=v.idiv=function(e){var t=this.constructor;return P(O(this,new t(e),0,1),t.precision)},v.equals=v.eq=function(e){return!this.cmp(e)},v.exponent=function(){return _(this)},v.greaterThan=v.gt=function(e){return this.cmp(e)>0},v.greaterThanOrEqualTo=v.gte=function(e){return this.cmp(e)>=0},v.isInteger=v.isint=function(){return this.e>this.d.length-2},v.isNegative=v.isneg=function(){return this.s<0},v.isPositive=v.ispos=function(){return this.s>0},v.isZero=function(){return 0===this.s},v.lessThan=v.lt=function(e){return this.cmp(e)<0},v.lessThanOrEqualTo=v.lte=function(e){return this.cmp(e)<1},v.logarithm=v.log=function(e){var t,n=this,r=n.constructor,o=r.precision,a=o+5;if(void 0===e)e=new r(10);else if((e=new r(e)).s<1||e.eq(i))throw Error(s+"NaN");if(n.s<1)throw Error(s+(n.s?"NaN":"-Infinity"));return n.eq(i)?new r(0):(c=!1,t=O(j(n,a),j(e,a),a),c=!0,P(t,o))},v.minus=v.sub=function(e){var t=this;return e=new t.constructor(e),t.s==e.s?A(t,e):b(t,(e.s=-e.s,e))},v.modulo=v.mod=function(e){var t,n=this,r=n.constructor,o=r.precision;if(!(e=new r(e)).s)throw Error(s+"NaN");return n.s?(c=!1,t=O(n,e,0,1).times(e),c=!0,n.minus(t)):P(new r(n),o)},v.naturalExponential=v.exp=function(){return E(this)},v.naturalLogarithm=v.ln=function(){return j(this)},v.negated=v.neg=function(){var e=new this.constructor(this);return e.s=-e.s||0,e},v.plus=v.add=function(e){var t=this;return e=new t.constructor(e),t.s==e.s?b(t,e):A(t,(e.s=-e.s,e))},v.precision=v.sd=function(e){var t,n,r,o=this;if(void 0!==e&&e!==!!e&&1!==e&&0!==e)throw Error(l+e);if(t=_(o)+1,n=(r=o.d.length-1)*m+1,r=o.d[r]){for(;r%10==0;r/=10)n--;for(r=o.d[0];r>=10;r/=10)n++}return e&&t>n?t:n},v.squareRoot=v.sqrt=function(){var e,t,n,r,o,i,a,u=this,l=u.constructor;if(u.s<1){if(!u.s)return new l(0);throw Error(s+"NaN")}for(e=_(u),c=!1,0==(o=Math.sqrt(+u))||o==1/0?(((t=x(u.d)).length+e)%2==0&&(t+="0"),o=Math.sqrt(t),e=p((e+1)/2)-(e<0||e%2),r=new l(t=o==1/0?"1e"+e:(t=o.toExponential()).slice(0,t.indexOf("e")+1)+e)):r=new l(o.toString()),o=a=(n=l.precision)+3;;)if(r=(i=r).plus(O(u,i,a+2)).times(.5),x(i.d).slice(0,a)===(t=x(r.d)).slice(0,a)){if(t=t.slice(a-3,a+1),o==a&&"4999"==t){if(P(i,n+1,0),i.times(i).eq(u)){r=i;break}}else if("9999"!=t)break;a+=4}return c=!0,P(r,n)},v.times=v.mul=function(e){var t,n,r,o,i,a,u,s,l,f=this,p=f.constructor,h=f.d,d=(e=new p(e)).d;if(!f.s||!e.s)return new p(0);for(e.s*=f.s,n=f.e+e.e,(s=h.length)<(l=d.length)&&(i=h,h=d,d=i,a=s,s=l,l=a),i=[],r=a=s+l;r--;)i.push(0);for(r=l;--r>=0;){for(t=0,o=s+r;o>r;)u=i[o]+d[r]*h[o-r-1]+t,i[o--]=u%y|0,t=u/y|0;i[o]=(i[o]+t)%y|0}for(;!i[--a];)i.pop();return t?++n:i.shift(),e.d=i,e.e=n,c?P(e,p.precision):e},v.toDecimalPlaces=v.todp=function(e,t){var n=this,r=n.constructor;return n=new r(n),void 0===e?n:(w(e,0,a),void 0===t?t=r.rounding:w(t,0,8),P(n,e+_(n)+1,t))},v.toExponential=function(e,t){var n,r=this,o=r.constructor;return void 0===e?n=C(r,!0):(w(e,0,a),void 0===t?t=o.rounding:w(t,0,8),n=C(r=P(new o(r),e+1,t),!0,e+1)),n},v.toFixed=function(e,t){var n,r,o=this,i=o.constructor;return void 0===e?C(o):(w(e,0,a),void 0===t?t=i.rounding:w(t,0,8),n=C((r=P(new i(o),e+_(o)+1,t)).abs(),!1,e+_(r)+1),o.isneg()&&!o.isZero()?"-"+n:n)},v.toInteger=v.toint=function(){var e=this,t=e.constructor;return P(new t(e),_(e)+1,t.rounding)},v.toNumber=function(){return+this},v.toPower=v.pow=function(e){var t,n,r,o,a,u,l=this,f=l.constructor,h=+(e=new f(e));if(!e.s)return new f(i);if(!(l=new f(l)).s){if(e.s<1)throw Error(s+"Infinity");return l}if(l.eq(i))return l;if(r=f.precision,e.eq(i))return P(l,r);if(u=(t=e.e)>=(n=e.d.length-1),a=l.s,u){if((n=h<0?-h:h)<=9007199254740991){for(o=new f(i),t=Math.ceil(r/m+4),c=!1;n%2&&M((o=o.times(l)).d,t),0!==(n=p(n/2));)M((l=l.times(l)).d,t);return c=!0,e.s<0?new f(i).div(o):P(o,r)}}else if(a<0)throw Error(s+"NaN");return a=a<0&&1&e.d[Math.max(t,n)]?-1:1,l.s=1,c=!1,o=e.times(j(l,r+12)),c=!0,(o=E(o)).s=a,o},v.toPrecision=function(e,t){var n,r,o=this,i=o.constructor;return void 0===e?r=C(o,(n=_(o))<=i.toExpNeg||n>=i.toExpPos):(w(e,1,a),void 0===t?t=i.rounding:w(t,0,8),r=C(o=P(new i(o),e,t),e<=(n=_(o))||n<=i.toExpNeg,e)),r},v.toSignificantDigits=v.tosd=function(e,t){var n=this.constructor;return void 0===e?(e=n.precision,t=n.rounding):(w(e,1,a),void 0===t?t=n.rounding:w(t,0,8)),P(new n(this),e,t)},v.toString=v.valueOf=v.val=v.toJSON=function(){var e=this,t=_(e),n=e.constructor;return C(e,t<=n.toExpNeg||t>=n.toExpPos)};var O=function(){function e(e,t){var n,r=0,o=e.length;for(e=e.slice();o--;)n=e[o]*t+r,e[o]=n%y|0,r=n/y|0;return r&&e.unshift(r),e}function t(e,t,n,r){var o,i;if(n!=r)i=n>r?1:-1;else for(o=i=0;ot[o]?1:-1;break}return i}function n(e,t,n){for(var r=0;n--;)e[n]-=r,r=e[n]1;)e.shift()}return function(r,o,i,a){var u,c,l,f,p,h,d,g,v,b,w,x,O,E,k,S,j,T,A=r.constructor,C=r.s==o.s?1:-1,M=r.d,N=o.d;if(!r.s)return new A(r);if(!o.s)throw Error(s+"Division by zero");for(c=r.e-o.e,j=N.length,k=M.length,g=(d=new A(C)).d=[],l=0;N[l]==(M[l]||0);)++l;if(N[l]>(M[l]||0)&&--c,(x=null==i?i=A.precision:a?i+(_(r)-_(o))+1:i)<0)return new A(0);if(x=x/m+2|0,l=0,1==j)for(f=0,N=N[0],x++;(l1&&(N=e(N,f),M=e(M,f),j=N.length,k=M.length),E=j,b=(v=M.slice(0,j)).length;b=y/2&&++S;do{f=0,(u=t(N,v,j,b))<0?(w=v[0],j!=b&&(w=w*y+(v[1]||0)),(f=w/S|0)>1?(f>=y&&(f=y-1),1==(u=t(p=e(N,f),v,h=p.length,b=v.length))&&(f--,n(p,j16)throw Error(f+_(e));if(!e.s)return new p(i);for(null==t?(c=!1,u=d):u=t,a=new p(.03125);e.abs().gte(.1);)e=e.times(a),l+=5;for(u+=Math.log(h(2,l))/Math.LN10*2+5|0,n=r=o=new p(i),p.precision=u;;){if(r=P(r.times(e),u),n=n.times(++s),x((a=o.plus(O(r,n,u))).d).slice(0,u)===x(o.d).slice(0,u)){for(;l--;)o=P(o.times(o),u);return p.precision=d,null==t?(c=!0,P(o,d)):o}o=a}}function _(e){for(var t=e.e*m,n=e.d[0];n>=10;n/=10)t++;return t}function k(e,t,n){if(t>e.LN10.sd())throw c=!0,n&&(e.precision=n),Error(s+"LN10 precision limit exceeded");return P(new e(e.LN10),t)}function S(e){for(var t="";e--;)t+="0";return t}function j(e,t){var n,r,o,a,u,l,f,p,h,d=1,y=e,m=y.d,g=y.constructor,v=g.precision;if(y.s<1)throw Error(s+(y.s?"NaN":"-Infinity"));if(y.eq(i))return new g(0);if(null==t?(c=!1,p=v):p=t,y.eq(10))return null==t&&(c=!0),k(g,p);if(p+=10,g.precision=p,r=(n=x(m)).charAt(0),a=_(y),!(Math.abs(a)<15e14))return f=k(g,p+2,v).times(a+""),y=j(new g(r+"."+n.slice(1)),p-10).plus(f),g.precision=v,null==t?(c=!0,P(y,v)):y;for(;r<7&&1!=r||1==r&&n.charAt(1)>3;)r=(n=x((y=y.times(e)).d)).charAt(0),d++;for(a=_(y),r>1?(y=new g("0."+n),a++):y=new g(r+"."+n.slice(1)),l=u=y=O(y.minus(i),y.plus(i),p),h=P(y.times(y),p),o=3;;){if(u=P(u.times(h),p),x((f=l.plus(O(u,new g(o),p))).d).slice(0,p)===x(l.d).slice(0,p))return l=l.times(2),0!==a&&(l=l.plus(k(g,p+2,v).times(a+""))),l=O(l,new g(d),p),g.precision=v,null==t?(c=!0,P(l,v)):l;l=f,o+=2}}function T(e,t){var n,r,o;for((n=t.indexOf("."))>-1&&(t=t.replace(".","")),(r=t.search(/e/i))>0?(n<0&&(n=r),n+=+t.slice(r+1),t=t.substring(0,r)):n<0&&(n=t.length),r=0;48===t.charCodeAt(r);)++r;for(o=t.length;48===t.charCodeAt(o-1);)--o;if(t=t.slice(r,o)){if(o-=r,n=n-r-1,e.e=p(n/m),e.d=[],r=(n+1)%m,n<0&&(r+=m),rg||e.e<-g))throw Error(f+n)}else e.s=0,e.e=0,e.d=[0];return e}function P(e,t,n){var r,o,i,a,u,s,l,d,v=e.d;for(a=1,i=v[0];i>=10;i/=10)a++;if((r=t-a)<0)r+=m,o=t,l=v[d=0];else{if((d=Math.ceil((r+1)/m))>=(i=v.length))return e;for(l=i=v[d],a=1;i>=10;i/=10)a++;o=(r%=m)-m+a}if(void 0!==n&&(u=l/(i=h(10,a-o-1))%10|0,s=t<0||void 0!==v[d+1]||l%i,s=n<4?(u||s)&&(0==n||n==(e.s<0?3:2)):u>5||5==u&&(4==n||s||6==n&&(r>0?o>0?l/h(10,a-o):0:v[d-1])%10&1||n==(e.s<0?8:7))),t<1||!v[0])return s?(i=_(e),v.length=1,t=t-i-1,v[0]=h(10,(m-t%m)%m),e.e=p(-t/m)||0):(v.length=1,v[0]=e.e=e.s=0),e;if(0==r?(v.length=d,i=1,d--):(v.length=d+1,i=h(10,m-r),v[d]=o>0?(l/h(10,a-o)%h(10,o)|0)*i:0),s)for(;;){if(0==d){(v[0]+=i)==y&&(v[0]=1,++e.e);break}if(v[d]+=i,v[d]!=y)break;v[d--]=0,i=1}for(r=v.length;0===v[--r];)v.pop();if(c&&(e.e>g||e.e<-g))throw Error(f+_(e));return e}function A(e,t){var n,r,o,i,a,u,s,l,f,p,h=e.constructor,d=h.precision;if(!e.s||!t.s)return t.s?t.s=-t.s:t=new h(e),c?P(t,d):t;if(s=e.d,p=t.d,r=t.e,l=e.e,s=s.slice(),a=l-r){for((f=a<0)?(n=s,a=-a,u=p.length):(n=p,r=l,u=s.length),a>(o=Math.max(Math.ceil(d/m),u)+2)&&(a=o,n.length=1),n.reverse(),o=a;o--;)n.push(0);n.reverse()}else{for((f=(o=s.length)<(u=p.length))&&(u=o),o=0;o0;--o)s[u++]=0;for(o=p.length;o>a;){if(s[--o]0?i=i.charAt(0)+"."+i.slice(1)+S(r):a>1&&(i=i.charAt(0)+"."+i.slice(1)),i=i+(o<0?"e":"e+")+o):o<0?(i="0."+S(-o-1)+i,n&&(r=n-a)>0&&(i+=S(r))):o>=a?(i+=S(o+1-a),n&&(r=n-o-1)>0&&(i=i+"."+S(r))):((r=o+1)0&&(o+1===a&&(i+="."),i+=S(r))),e.s<0?"-"+i:i}function M(e,t){if(e.length>t)return e.length=t,!0}function N(e){if(!e||"object"!=typeof e)throw Error(s+"Object expected");var t,n,r,o=["precision",1,a,"rounding",0,8,"toExpNeg",-1/0,0,"toExpPos",0,1/0];for(t=0;t=o[t+1]&&r<=o[t+2]))throw Error(l+n+": "+r);this[n]=r}if(void 0!==(r=e[n="LN10"])){if(r!=Math.LN10)throw Error(l+n+": "+r);this[n]=new this(r)}return this}(u=function e(t){var n,r,o;function i(e){var t=this;if(!(t instanceof i))return new i(e);if(t.constructor=i,e instanceof i)return t.s=e.s,t.e=e.e,void(t.d=(e=e.d)?e.slice():e);if("number"==typeof e){if(0*e!=0)throw Error(l+e);if(e>0)t.s=1;else{if(!(e<0))return t.s=0,t.e=0,void(t.d=[0]);e=-e,t.s=-1}return e===~~e&&e<1e7?(t.e=0,void(t.d=[e])):T(t,e.toString())}if("string"!=typeof e)throw Error(l+e);if(45===e.charCodeAt(0)?(e=e.slice(1),t.s=-1):t.s=1,!d.test(e))throw Error(l+e);T(t,e)}if(i.prototype=v,i.ROUND_UP=0,i.ROUND_DOWN=1,i.ROUND_CEIL=2,i.ROUND_FLOOR=3,i.ROUND_HALF_UP=4,i.ROUND_HALF_DOWN=5,i.ROUND_HALF_EVEN=6,i.ROUND_HALF_CEIL=7,i.ROUND_HALF_FLOOR=8,i.clone=e,i.config=i.set=N,void 0===t&&(t={}),t)for(o=["precision","rounding","toExpNeg","toExpPos","LN10"],n=0;n=t?n.apply(void 0,c):e(t-l,u((function(){for(var e=arguments.length,t=new Array(e),o=0;o + * @license MIT + */ +var r=n(530),o=n(531),i=n(532);function a(){return c.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function u(e,t){if(a()=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|e}function d(e,t){if(c.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return B(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return W(e).length;default:if(r)return B(e).length;t=(""+t).toLowerCase(),r=!0}}function y(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return A(this,t,n);case"utf8":case"utf-8":return S(this,t,n);case"ascii":return T(this,t,n);case"latin1":case"binary":return P(this,t,n);case"base64":return k(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return C(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function m(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function g(e,t,n,r,o){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=o?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(o)return-1;n=e.length-1}else if(n<0){if(!o)return-1;n=0}if("string"==typeof t&&(t=c.from(t,r)),c.isBuffer(t))return 0===t.length?-1:v(e,t,n,r,o);if("number"==typeof t)return t&=255,c.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):v(e,[t],n,r,o);throw new TypeError("val must be string, number or Buffer")}function v(e,t,n,r,o){var i,a=1,u=e.length,c=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a=2,u/=2,c/=2,n/=2}function s(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(o){var l=-1;for(i=n;iu&&(n=u-c),i=n;i>=0;i--){for(var f=!0,p=0;po&&(r=o):r=o;var i=t.length;if(i%2!=0)throw new TypeError("Invalid hex string");r>i/2&&(r=i/2);for(var a=0;a>8,o=n%256,i.push(o),i.push(r);return i}(t,e.length-n),e,n,r)}function k(e,t,n){return 0===t&&n===e.length?r.fromByteArray(e):r.fromByteArray(e.slice(t,n))}function S(e,t,n){n=Math.min(e.length,n);for(var r=[],o=t;o239?4:s>223?3:s>191?2:1;if(o+f<=n)switch(f){case 1:s<128&&(l=s);break;case 2:128==(192&(i=e[o+1]))&&(c=(31&s)<<6|63&i)>127&&(l=c);break;case 3:i=e[o+1],a=e[o+2],128==(192&i)&&128==(192&a)&&(c=(15&s)<<12|(63&i)<<6|63&a)>2047&&(c<55296||c>57343)&&(l=c);break;case 4:i=e[o+1],a=e[o+2],u=e[o+3],128==(192&i)&&128==(192&a)&&128==(192&u)&&(c=(15&s)<<18|(63&i)<<12|(63&a)<<6|63&u)>65535&&c<1114112&&(l=c)}null===l?(l=65533,f=1):l>65535&&(l-=65536,r.push(l>>>10&1023|55296),l=56320|1023&l),r.push(l),o+=f}return function(e){var t=e.length;if(t<=j)return String.fromCharCode.apply(String,e);var n="",r=0;for(;r0&&(e=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(e+=" ... ")),""},c.prototype.compare=function(e,t,n,r,o){if(!c.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===o&&(o=this.length),t<0||n>e.length||r<0||o>this.length)throw new RangeError("out of range index");if(r>=o&&t>=n)return 0;if(r>=o)return-1;if(t>=n)return 1;if(this===e)return 0;for(var i=(o>>>=0)-(r>>>=0),a=(n>>>=0)-(t>>>=0),u=Math.min(i,a),s=this.slice(r,o),l=e.slice(t,n),f=0;fo)&&(n=o),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var i=!1;;)switch(r){case"hex":return b(this,e,t,n);case"utf8":case"utf-8":return w(this,e,t,n);case"ascii":return x(this,e,t,n);case"latin1":case"binary":return O(this,e,t,n);case"base64":return E(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return _(this,e,t,n);default:if(i)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),i=!0}},c.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var j=4096;function T(e,t,n){var r="";n=Math.min(e.length,n);for(var o=t;or)&&(n=r);for(var o="",i=t;in)throw new RangeError("Trying to access beyond buffer length")}function N(e,t,n,r,o,i){if(!c.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>o||te.length)throw new RangeError("Index out of range")}function I(e,t,n,r){t<0&&(t=65535+t+1);for(var o=0,i=Math.min(e.length-n,2);o>>8*(r?o:1-o)}function D(e,t,n,r){t<0&&(t=4294967295+t+1);for(var o=0,i=Math.min(e.length-n,4);o>>8*(r?o:3-o)&255}function R(e,t,n,r,o,i){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function L(e,t,n,r,i){return i||R(e,0,n,4),o.write(e,t,n,r,23,4),n+4}function F(e,t,n,r,i){return i||R(e,0,n,8),o.write(e,t,n,r,52,8),n+8}c.prototype.slice=function(e,t){var n,r=this.length;if((e=~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),(t=void 0===t?r:~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),t0&&(o*=256);)r+=this[e+--t]*o;return r},c.prototype.readUInt8=function(e,t){return t||M(e,1,this.length),this[e]},c.prototype.readUInt16LE=function(e,t){return t||M(e,2,this.length),this[e]|this[e+1]<<8},c.prototype.readUInt16BE=function(e,t){return t||M(e,2,this.length),this[e]<<8|this[e+1]},c.prototype.readUInt32LE=function(e,t){return t||M(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},c.prototype.readUInt32BE=function(e,t){return t||M(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},c.prototype.readIntLE=function(e,t,n){e|=0,t|=0,n||M(e,t,this.length);for(var r=this[e],o=1,i=0;++i=(o*=128)&&(r-=Math.pow(2,8*t)),r},c.prototype.readIntBE=function(e,t,n){e|=0,t|=0,n||M(e,t,this.length);for(var r=t,o=1,i=this[e+--r];r>0&&(o*=256);)i+=this[e+--r]*o;return i>=(o*=128)&&(i-=Math.pow(2,8*t)),i},c.prototype.readInt8=function(e,t){return t||M(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},c.prototype.readInt16LE=function(e,t){t||M(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},c.prototype.readInt16BE=function(e,t){t||M(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},c.prototype.readInt32LE=function(e,t){return t||M(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},c.prototype.readInt32BE=function(e,t){return t||M(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},c.prototype.readFloatLE=function(e,t){return t||M(e,4,this.length),o.read(this,e,!0,23,4)},c.prototype.readFloatBE=function(e,t){return t||M(e,4,this.length),o.read(this,e,!1,23,4)},c.prototype.readDoubleLE=function(e,t){return t||M(e,8,this.length),o.read(this,e,!0,52,8)},c.prototype.readDoubleBE=function(e,t){return t||M(e,8,this.length),o.read(this,e,!1,52,8)},c.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||N(this,e,t,n,Math.pow(2,8*n)-1,0);var o=1,i=0;for(this[t]=255&e;++i=0&&(i*=256);)this[t+o]=e/i&255;return t+n},c.prototype.writeUInt8=function(e,t,n){return e=+e,t|=0,n||N(this,e,t,1,255,0),c.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},c.prototype.writeUInt16LE=function(e,t,n){return e=+e,t|=0,n||N(this,e,t,2,65535,0),c.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):I(this,e,t,!0),t+2},c.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||N(this,e,t,2,65535,0),c.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):I(this,e,t,!1),t+2},c.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||N(this,e,t,4,4294967295,0),c.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):D(this,e,t,!0),t+4},c.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||N(this,e,t,4,4294967295,0),c.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):D(this,e,t,!1),t+4},c.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t|=0,!r){var o=Math.pow(2,8*n-1);N(this,e,t,n,o-1,-o)}var i=0,a=1,u=0;for(this[t]=255&e;++i>0)-u&255;return t+n},c.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t|=0,!r){var o=Math.pow(2,8*n-1);N(this,e,t,n,o-1,-o)}var i=n-1,a=1,u=0;for(this[t+i]=255&e;--i>=0&&(a*=256);)e<0&&0===u&&0!==this[t+i+1]&&(u=1),this[t+i]=(e/a>>0)-u&255;return t+n},c.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||N(this,e,t,1,127,-128),c.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},c.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||N(this,e,t,2,32767,-32768),c.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):I(this,e,t,!0),t+2},c.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||N(this,e,t,2,32767,-32768),c.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):I(this,e,t,!1),t+2},c.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||N(this,e,t,4,2147483647,-2147483648),c.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):D(this,e,t,!0),t+4},c.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||N(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),c.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):D(this,e,t,!1),t+4},c.prototype.writeFloatLE=function(e,t,n){return L(this,e,t,!0,n)},c.prototype.writeFloatBE=function(e,t,n){return L(this,e,t,!1,n)},c.prototype.writeDoubleLE=function(e,t,n){return F(this,e,t,!0,n)},c.prototype.writeDoubleBE=function(e,t,n){return F(this,e,t,!1,n)},c.prototype.copy=function(e,t,n,r){if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t=0;--o)e[o+t]=this[o+n];else if(i<1e3||!c.TYPED_ARRAY_SUPPORT)for(o=0;o>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(i=t;i55295&&n<57344){if(!o){if(n>56319){(t-=3)>-1&&i.push(239,191,189);continue}if(a+1===r){(t-=3)>-1&&i.push(239,191,189);continue}o=n;continue}if(n<56320){(t-=3)>-1&&i.push(239,191,189),o=n;continue}n=65536+(o-55296<<10|n-56320)}else o&&(t-=3)>-1&&i.push(239,191,189);if(o=null,n<128){if((t-=1)<0)break;i.push(n)}else if(n<2048){if((t-=2)<0)break;i.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;i.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;i.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return i}function W(e){return r.toByteArray(function(e){if((e=function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}(e).replace(z,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function H(e,t,n,r){for(var o=0;o=t.length||o>=e.length);++o)t[o+n]=e[o];return o}}).call(this,n(46))},function(e,t,n){"use strict";function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e,t){if(!e.getCurrentLocation)throw new Error("delegate: expected history@3 implementation, got: "+String(e));if("string"!=typeof t)throw new Error("basename: expected string, got: "+t);if(!t.startsWith("/"))throw new Error("basename: must be absolute: "+t);if(!t.endsWith("/"))throw new Error("basename: must end in slash: "+t);function n(e){return t=>{if(null==t)return console.warn("unexpected lens argument: "+String(t)),t;if("string"==typeof t)return e(t);return function(e){for(var t=1;tt+e.replace(/^\//,"")),u=n(e=>(i(e),"/"+e.slice(t.length))),c=n(n=>{i(n);const r=e.getCurrentLocation().pathname;return i(r),r.slice(t.length).replace(/\/[^/]*$/,"/").replace(/[^/]+/g,"..")+n.slice(t.length)});return{getCurrentLocation:function(){return u(e.getCurrentLocation())},listenBefore:function(t){return e.listenBefore(e=>t(u(e)))},listen:function(t){return e.listen(e=>t(u(e)))},transitionTo:function(t){return e.transitionTo(a(t))},push:function(t){return e.push(a(t))},replace:function(t){return e.replace(a(t))},go:function(t){return e.go(t)},goBack:function(){return e.goBack()},goForward:function(){return e.goForward()},createKey:function(){return e.createKey()},createPath:function(e){throw new Error("createPath is not part of the public API")},createHref:function(t){return c(e.createHref(a(t)))},createLocation:function(t,n){return u(e.createLocation(a(t),n))}}}n.d(t,"a",(function(){return i}))},function(e,t,n){"use strict";var r={childContextTypes:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i=Object.defineProperty,a=Object.getOwnPropertyNames,u=Object.getOwnPropertySymbols,c=Object.getOwnPropertyDescriptor,s=Object.getPrototypeOf,l=s&&s(Object);e.exports=function e(t,n,f){if("string"!=typeof n){if(l){var p=s(n);p&&p!==l&&e(t,p,f)}var h=a(n);u&&(h=h.concat(u(n)));for(var d=0;d0&&void 0!==arguments[0]?arguments[0]:{};i.canUseDOM||(0,o.default)(!1);var t=e.queryKey,n=e.hashType;"string"!=typeof t&&(t="_k"),null==n&&(n="slash"),n in f||(n="slash");var s=f[n],l=u.getUserConfirmation,p=function(){return u.getCurrentLocation(s,t)},h=function(e){return u.pushLocation(e,s,t)},d=function(e){return u.replaceLocation(e,s,t)},y=(0,c.default)(r({getUserConfirmation:l},e,{getCurrentLocation:p,pushLocation:h,replaceLocation:d,go:u.go})),m=0,g=void 0,v=function(e,n){1==++m&&(g=u.startListener(y.transitionTo,s,t));var r=n?y.listenBefore(e):y.listen(e);return function(){r(),0==--m&&g()}},b=function(e){return v(e,!0)},w=function(e){return v(e,!1)},x=((0,a.supportsGoWithoutReloadUsingHash)(),function(e){y.go(e)}),O=function(e){return"#"+s.encodePath(y.createHref(e))};return r({},y,{listenBefore:b,listen:w,go:x,createHref:O})}},function(e,t){e.exports=function(e,t){(t=t||{}).listUnicodeChar=!!t.hasOwnProperty("listUnicodeChar")&&t.listUnicodeChar,t.stripListLeaders=!t.hasOwnProperty("stripListLeaders")||t.stripListLeaders,t.gfm=!t.hasOwnProperty("gfm")||t.gfm,t.useImgAltText=!t.hasOwnProperty("useImgAltText")||t.useImgAltText;var n=e||"";n=n.replace(/^(-\s*?|\*\s*?|_\s*?){3,}\s*$/gm,"");try{t.stripListLeaders&&(n=t.listUnicodeChar?n.replace(/^([\s\t]*)([\*\-\+]|\d+\.)\s+/gm,t.listUnicodeChar+" $1"):n.replace(/^([\s\t]*)([\*\-\+]|\d+\.)\s+/gm,"$1")),t.gfm&&(n=n.replace(/\n={2,}/g,"\n").replace(/~{3}.*\n/g,"").replace(/~~/g,"").replace(/`{3}.*\n/g,"")),n=n.replace(/<[^>]*>/g,"").replace(/^[=\-]{2,}\s*$/g,"").replace(/\[\^.+?\](\: .*?$)?/g,"").replace(/\s{0,2}\[.*?\]: .*?$/g,"").replace(/\!\[(.*?)\][\[\(].*?[\]\)]/g,t.useImgAltText?"$1":"").replace(/\[(.*?)\][\[\(].*?[\]\)]/g,"$1").replace(/^\s{0,3}>\s?/g,"").replace(/^\s{1,2}\[(.*?)\]: (\S+)( ".*?")?\s*$/g,"").replace(/^(\n)?\s{0,}#{1,6}\s+| {0,}(\n)?\s{0,}#{0,} {0,}(\n)?\s{0,}$/gm,"$1$2$3").replace(/([\*_]{1,3})(\S.*?\S{0,1})\1/g,"$2").replace(/([\*_]{1,3})(\S.*?\S{0,1})\1/g,"$2").replace(/(`{3,})(.*?)\1/gm,"$2").replace(/`(.+?)`/g,"$1").replace(/\n{2,}/g,"\n\n")}catch(t){return console.error(t),e}return n}},function(e,t,n){var r=n(68),o=n(480),i=n(193),a=n(487),u=i((function(e){var t=r(e,a);return t.length&&t[0]===e[0]?o(t):[]}));e.exports=u},function(e,t,n){var r=n(182),o=n(489),i=n(30),a=n(7);e.exports=function(e,t){return(a(e)?r:o)(e,i(t,3))}},function(e,t,n){var r=n(200),o=n(507);e.exports=function(e,t){return r(o(e,t),1)}},function(e,t){e.exports=function(e){var t=null==e?0:e.length;return t?e[t-1]:void 0}},function(e,t,n){var r=n(520)(n(521));e.exports=r},function(e,t,n){var r=n(525),o=n(17),i="Expected a function";e.exports=function(e,t,n){var a=!0,u=!0;if("function"!=typeof e)throw new TypeError(i);return o(n)&&(a="leading"in n?!!n.leading:a,u="trailing"in n?!!n.trailing:u),r(e,t,{leading:a,maxWait:t,trailing:u})}},function(e,t,n){var r=n(180),o=n(30),i=n(527),a=n(7),u=n(94);e.exports=function(e,t,n){var c=a(e)?r:i;return n&&u(e,t,n)&&(t=void 0),c(e,o(t,3))}},function(e,t,n){"use strict";var r,o="object"==typeof Reflect?Reflect:null,i=o&&"function"==typeof o.apply?o.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};r=o&&"function"==typeof o.ownKeys?o.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var a=Number.isNaN||function(e){return e!=e};function u(){u.init.call(this)}e.exports=u,u.EventEmitter=u,u.prototype._events=void 0,u.prototype._eventsCount=0,u.prototype._maxListeners=void 0;var c=10;function s(e){return void 0===e._maxListeners?u.defaultMaxListeners:e._maxListeners}function l(e,t,n,r){var o,i,a,u;if("function"!=typeof n)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof n);if(void 0===(i=e._events)?(i=e._events=Object.create(null),e._eventsCount=0):(void 0!==i.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),i=e._events),a=i[t]),void 0===a)a=i[t]=n,++e._eventsCount;else if("function"==typeof a?a=i[t]=r?[n,a]:[a,n]:r?a.unshift(n):a.push(n),(o=s(e))>0&&a.length>o&&!a.warned){a.warned=!0;var c=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");c.name="MaxListenersExceededWarning",c.emitter=e,c.type=t,c.count=a.length,u=c,console&&console.warn&&console.warn(u)}return e}function f(){for(var e=[],t=0;t0&&(a=t[0]),a instanceof Error)throw a;var u=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw u.context=a,u}var c=o[e];if(void 0===c)return!1;if("function"==typeof c)i(c,this,t);else{var s=c.length,l=y(c,s);for(n=0;n=0;i--)if(n[i]===t||n[i].listener===t){a=n[i].listener,o=i;break}if(o<0)return this;0===o?n.shift():function(e,t){for(;t+1=0;r--)this.removeListener(e,t[r]);return this},u.prototype.listeners=function(e){return h(this,e,!0)},u.prototype.rawListeners=function(e){return h(this,e,!1)},u.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):d.call(e,t)},u.prototype.listenerCount=d,u.prototype.eventNames=function(){return this._eventsCount>0?r(this._events):[]}},function(e,t,n){e.exports=n(529).default,e.exports.default=e.exports},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));var r=n(72);function o(){const e='["@AraCred"]';const t=JSON.parse(e);return Object(r.makeRouteData)(t)}},function(e,t,n){"use strict";var r=n(1),o=n.n(r),i=n(27),a=n(103);function u(){return(u=Object.assign||function(e){for(var t=1;to.a.createElement(t,f({routeData:e},n))},e.map(e=>{let{path:t,contents:n}=e;switch(n.type){case"PAGE":return"/"===t?o.a.createElement(i.a,{key:t,component:c(n.component())}):o.a.createElement(i.c,{key:t,path:t,component:c(n.component())});case"EXTERNAL_REDIRECT":return o.a.createElement(i.c,{key:t,path:t,component:()=>o.a.createElement(s.a,{redirectTo:n.redirectTo})});default:throw new Error(n.type)}}))}n.d(t,"a",(function(){return p}))},,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"undefined"==typeof Promise&&(n(251).enable(),window.Promise=n(252)),n(253),Object.assign=n(64)},function(e,t,n){"use strict";var r=n(149),o=[ReferenceError,TypeError,RangeError],i=!1;function a(){i=!1,r._l=null,r._m=null}function u(e,t){return t.some((function(t){return e instanceof t}))}t.disable=a,t.enable=function(e){e=e||{},i&&a();i=!0;var t=0,n=0,c={};function s(t){(e.allRejections||u(c[t].error,e.whitelist||o))&&(c[t].displayId=n++,e.onUnhandled?(c[t].logged=!0,e.onUnhandled(c[t].displayId,c[t].error)):(c[t].logged=!0,function(e,t){console.warn("Possible Unhandled Promise Rejection (id: "+e+"):"),((t&&(t.stack||t))+"").split("\n").forEach((function(e){console.warn(" "+e)}))}(c[t].displayId,c[t].error)))}r._l=function(t){2===t._i&&c[t._o]&&(c[t._o].logged?function(t){c[t].logged&&(e.onHandled?e.onHandled(c[t].displayId,c[t].error):c[t].onUnhandled||(console.warn("Promise Rejection Handled (id: "+c[t].displayId+"):"),console.warn(' This means you can ignore any previous messages of the form "Possible Unhandled Promise Rejection" with id '+c[t].displayId+".")))}(t._o):clearTimeout(c[t._o].timeout),delete c[t._o])},r._m=function(e,n){0===e._h&&(e._o=t++,c[e._o]={displayId:null,error:n,timeout:setTimeout(s.bind(null,e._o),u(n,o)?100:2e3),logged:!1})}}},function(e,t,n){"use strict";var r=n(149);e.exports=r;var o=l(!0),i=l(!1),a=l(null),u=l(void 0),c=l(0),s=l("");function l(e){var t=new r(r._n);return t._i=1,t._j=e,t}r.resolve=function(e){if(e instanceof r)return e;if(null===e)return a;if(void 0===e)return u;if(!0===e)return o;if(!1===e)return i;if(0===e)return c;if(""===e)return s;if("object"==typeof e||"function"==typeof e)try{var t=e.then;if("function"==typeof t)return new r(t.bind(e))}catch(e){return new r((function(t,n){n(e)}))}return l(e)},r.all=function(e){var t=Array.prototype.slice.call(e);return new r((function(e,n){if(0===t.length)return e([]);var o=t.length;function i(a,u){if(u&&("object"==typeof u||"function"==typeof u)){if(u instanceof r&&u.then===r.prototype.then){for(;3===u._i;)u=u._j;return 1===u._i?i(a,u._j):(2===u._i&&n(u._j),void u.then((function(e){i(a,e)}),n))}var c=u.then;if("function"==typeof c)return void new r(c.bind(u)).then((function(e){i(a,e)}),n)}t[a]=u,0==--o&&e(t)}for(var a=0;a-1};l.prototype.append=function(e,t){e=u(e),t=c(t);var n=this.map[e];this.map[e]=n?n+","+t:t},l.prototype.delete=function(e){delete this.map[u(e)]},l.prototype.get=function(e){return e=u(e),this.has(e)?this.map[e]:null},l.prototype.has=function(e){return this.map.hasOwnProperty(u(e))},l.prototype.set=function(e,t){this.map[u(e)]=c(t)},l.prototype.forEach=function(e,t){for(var n in this.map)this.map.hasOwnProperty(n)&&e.call(t,this.map[n],n,this)},l.prototype.keys=function(){var e=[];return this.forEach((function(t,n){e.push(n)})),s(e)},l.prototype.values=function(){var e=[];return this.forEach((function(t){e.push(t)})),s(e)},l.prototype.entries=function(){var e=[];return this.forEach((function(t,n){e.push([n,t])})),s(e)},t.iterable&&(l.prototype[Symbol.iterator]=l.prototype.entries);var i=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];m.prototype.clone=function(){return new m(this,{body:this._bodyInit})},y.call(m.prototype),y.call(v.prototype),v.prototype.clone=function(){return new v(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new l(this.headers),url:this.url})},v.error=function(){var e=new v(null,{status:0,statusText:""});return e.type="error",e};var a=[301,302,303,307,308];v.redirect=function(e,t){if(-1===a.indexOf(t))throw new RangeError("Invalid status code");return new v(null,{status:t,headers:{location:e}})},e.Headers=l,e.Request=m,e.Response=v,e.fetch=function(e,n){return new Promise((function(r,o){var i=new m(e,n),a=new XMLHttpRequest;a.onload=function(){var e,t,n={status:a.status,statusText:a.statusText,headers:(e=a.getAllResponseHeaders()||"",t=new l,e.split(/\r?\n/).forEach((function(e){var n=e.split(":"),r=n.shift().trim();if(r){var o=n.join(":").trim();t.append(r,o)}})),t)};n.url="responseURL"in a?a.responseURL:n.headers.get("X-Request-URL");var o="response"in a?a.response:a.responseText;r(new v(o,n))},a.onerror=function(){o(new TypeError("Network request failed"))},a.ontimeout=function(){o(new TypeError("Network request failed"))},a.open(i.method,i.url,!0),"include"===i.credentials&&(a.withCredentials=!0),"responseType"in a&&t.blob&&(a.responseType="blob"),i.headers.forEach((function(e,t){a.setRequestHeader(t,e)})),a.send(void 0===i._bodyInit?null:i._bodyInit)}))},e.fetch.polyfill=!0}function u(e){if("string"!=typeof e&&(e=String(e)),/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(e))throw new TypeError("Invalid character in header field name");return e.toLowerCase()}function c(e){return"string"!=typeof e&&(e=String(e)),e}function s(e){var n={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return t.iterable&&(n[Symbol.iterator]=function(){return n}),n}function l(e){this.map={},e instanceof l?e.forEach((function(e,t){this.append(t,e)}),this):Array.isArray(e)?e.forEach((function(e){this.append(e[0],e[1])}),this):e&&Object.getOwnPropertyNames(e).forEach((function(t){this.append(t,e[t])}),this)}function f(e){if(e.bodyUsed)return Promise.reject(new TypeError("Already read"));e.bodyUsed=!0}function p(e){return new Promise((function(t,n){e.onload=function(){t(e.result)},e.onerror=function(){n(e.error)}}))}function h(e){var t=new FileReader,n=p(t);return t.readAsArrayBuffer(e),n}function d(e){if(e.slice)return e.slice(0);var t=new Uint8Array(e.byteLength);return t.set(new Uint8Array(e)),t.buffer}function y(){return this.bodyUsed=!1,this._initBody=function(e){if(this._bodyInit=e,e)if("string"==typeof e)this._bodyText=e;else if(t.blob&&Blob.prototype.isPrototypeOf(e))this._bodyBlob=e;else if(t.formData&&FormData.prototype.isPrototypeOf(e))this._bodyFormData=e;else if(t.searchParams&&URLSearchParams.prototype.isPrototypeOf(e))this._bodyText=e.toString();else if(t.arrayBuffer&&t.blob&&r(e))this._bodyArrayBuffer=d(e.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer]);else{if(!t.arrayBuffer||!ArrayBuffer.prototype.isPrototypeOf(e)&&!o(e))throw new Error("unsupported BodyInit type");this._bodyArrayBuffer=d(e)}else this._bodyText="";this.headers.get("content-type")||("string"==typeof e?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):t.searchParams&&URLSearchParams.prototype.isPrototypeOf(e)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},t.blob&&(this.blob=function(){var e=f(this);if(e)return e;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?f(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(h)}),this.text=function(){var e,t,n,r=f(this);if(r)return r;if(this._bodyBlob)return e=this._bodyBlob,t=new FileReader,n=p(t),t.readAsText(e),n;if(this._bodyArrayBuffer)return Promise.resolve(function(e){for(var t=new Uint8Array(e),n=new Array(t.length),r=0;r-1?r:n),this.mode=t.mode||this.mode||null,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&o)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(o)}function g(e){var t=new FormData;return e.trim().split("&").forEach((function(e){if(e){var n=e.split("="),r=n.shift().replace(/\+/g," "),o=n.join("=").replace(/\+/g," ");t.append(decodeURIComponent(r),decodeURIComponent(o))}})),t}function v(e,t){t||(t={}),this.type="default",this.status="status"in t?t.status:200,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in t?t.statusText:"OK",this.headers=new l(t.headers),this.url=t.url||"",this._initBody(e)}}("undefined"!=typeof self?self:this)},function(e,t,n){"use strict"; +/** @license React v16.12.0 + * react.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var r=n(64),o="function"==typeof Symbol&&Symbol.for,i=o?Symbol.for("react.element"):60103,a=o?Symbol.for("react.portal"):60106,u=o?Symbol.for("react.fragment"):60107,c=o?Symbol.for("react.strict_mode"):60108,s=o?Symbol.for("react.profiler"):60114,l=o?Symbol.for("react.provider"):60109,f=o?Symbol.for("react.context"):60110,p=o?Symbol.for("react.forward_ref"):60112,h=o?Symbol.for("react.suspense"):60113;o&&Symbol.for("react.suspense_list");var d=o?Symbol.for("react.memo"):60115,y=o?Symbol.for("react.lazy"):60116;o&&Symbol.for("react.fundamental"),o&&Symbol.for("react.responder"),o&&Symbol.for("react.scope");var m="function"==typeof Symbol&&Symbol.iterator;function g(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;nC.length&&C.push(e)}function I(e,t,n){return null==e?0:function e(t,n,r,o){var u=typeof t;"undefined"!==u&&"boolean"!==u||(t=null);var c=!1;if(null===t)c=!0;else switch(u){case"string":case"number":c=!0;break;case"object":switch(t.$$typeof){case i:case a:c=!0}}if(c)return r(o,t,""===n?"."+D(t,0):n),1;if(c=0,n=""===n?".":n+":",Array.isArray(t))for(var s=0;s