paddle_pay 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +20 -0
- data/README.md +207 -0
- data/lib/paddle_pay.rb +40 -0
- data/lib/paddle_pay/configuration.rb +17 -0
- data/lib/paddle_pay/connection.rb +69 -0
- data/lib/paddle_pay/errors/paddle_pay_error.rb +54 -0
- data/lib/paddle_pay/models/alert/webhook.rb +14 -0
- data/lib/paddle_pay/models/product/coupon.rb +36 -0
- data/lib/paddle_pay/models/product/license.rb +14 -0
- data/lib/paddle_pay/models/product/pay_link.rb +14 -0
- data/lib/paddle_pay/models/product/payment.rb +15 -0
- data/lib/paddle_pay/models/product/product.rb +12 -0
- data/lib/paddle_pay/models/subscription/charge.rb +14 -0
- data/lib/paddle_pay/models/subscription/modifier.rb +24 -0
- data/lib/paddle_pay/models/subscription/payment.rb +25 -0
- data/lib/paddle_pay/models/subscription/plan.rb +19 -0
- data/lib/paddle_pay/models/subscription/user.rb +31 -0
- data/lib/paddle_pay/models/transaction/checkout.rb +13 -0
- data/lib/paddle_pay/models/transaction/order.rb +13 -0
- data/lib/paddle_pay/models/transaction/product.rb +13 -0
- data/lib/paddle_pay/models/transaction/subscription.rb +13 -0
- data/lib/paddle_pay/models/transaction/user.rb +13 -0
- data/lib/paddle_pay/util.rb +36 -0
- data/lib/paddle_pay/version.rb +5 -0
- data/test/spec/paddle_pay/configuration_spec.rb +24 -0
- data/test/spec/paddle_pay/connection_spec.rb +115 -0
- data/test/spec/paddle_pay/models/alert/webhook_spec.rb +41 -0
- data/test/spec/paddle_pay/models/product/coupon_spec.rb +98 -0
- data/test/spec/paddle_pay/models/product/license_spec.rb +33 -0
- data/test/spec/paddle_pay/models/product/pay_link_spec.rb +33 -0
- data/test/spec/paddle_pay/models/product/payment_spec.rb +31 -0
- data/test/spec/paddle_pay/models/product/product_spec.rb +42 -0
- data/test/spec/paddle_pay/models/subscription/charge_spec.rb +31 -0
- data/test/spec/paddle_pay/models/subscription/modifier_spec.rb +70 -0
- data/test/spec/paddle_pay/models/subscription/payment_spec.rb +68 -0
- data/test/spec/paddle_pay/models/subscription/plan_spec.rb +57 -0
- data/test/spec/paddle_pay/models/subscription/user_spec.rb +87 -0
- data/test/spec/paddle_pay/models/transaction/checkout_spec.rb +41 -0
- data/test/spec/paddle_pay/models/transaction/order_spec.rb +41 -0
- data/test/spec/paddle_pay/models/transaction/product_spec.rb +41 -0
- data/test/spec/paddle_pay/models/transaction/subscription_spec.rb +41 -0
- data/test/spec/paddle_pay/models/transaction/user_spec.rb +41 -0
- data/test/spec/paddle_pay/util_spec.rb +41 -0
- data/test/spec/paddle_pay/version_spec.rb +9 -0
- data/test/test_helper.rb +18 -0
- data/test/vcr_cassettes/paddle_pay/alert/webhook/test_0001_should_list_all_webhooks.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/alert/webhook/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/alert/webhook/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/product/coupon/test_0001_should_list_all_coupons.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/product/coupon/test_0001_should_raise_an_error_if_the_coupon_deletion_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/product/coupon/test_0001_should_raise_an_error_if_the_coupon_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/product/coupon/test_0001_should_return_updated_0_if_the_coupon_group_update_is_invalid.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/product/coupon/test_0001_should_return_updated_0_if_the_coupon_update_is_invalid.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/product/coupon/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/product/coupon/test_0002_should_return_coupon_codes_if_the_coupon_is_valid.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/product/coupon/test_0002_should_return_success_if_the_coupon_deletion_is_valid.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/product/coupon/test_0002_should_return_updated_0_if_the_coupon_group_update_is_valid.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/product/coupon/test_0002_should_return_updated_0_if_the_coupon_update_is_valid.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/product/coupon/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/product/license/test_0001_should_raise_an_error_if_license_generation_request_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/product/license/test_0002_should_return_a_license_code_if_license_generation_request_is_valid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/product/pay_link/test_0001_should_raise_an_error_if_pay_link_generation_request_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/product/pay_link/test_0002_should_return_an_url_if_pay_link_generation_request_is_valid.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/product/payment/test_0001_should_raise_an_error_if_the_payment_refund_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/product/payment/test_0002_should_return_success_if_the_payment_refund_is_valid.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/product/test_0001_should_list_all_products.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/product/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/product/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/charge/test_0001_should_raise_an_error_if_the_charge_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/charge/test_0002_should_return_invoice_id_if_the_charge_is_valid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/modifier/test_0001_should_list_all_modifiers.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/subscription/modifier/test_0001_should_raise_an_error_if_the_modifier_deletion_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/modifier/test_0001_should_raise_an_error_if_the_modifier_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/modifier/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/modifier/test_0002_should_return_a_modifier_id_if_the_modifier_is_valid.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/subscription/modifier/test_0002_should_return_a_product_id_if_the_modifier_deletion_is_valid.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/subscription/modifier/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/payment/test_0001_should_list_all_payments.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/subscription/payment/test_0001_should_raise_an_error_if_the_payment_refund_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/payment/test_0001_should_raise_an_error_if_the_payment_reschedule_is_invalid.yml +313 -0
- data/test/vcr_cassettes/paddle_pay/subscription/payment/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/payment/test_0002_should_return_success_if_the_payment_refund_is_valid.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/subscription/payment/test_0002_should_return_success_if_the_payment_reschedule_is_valid.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/subscription/payment/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/plan/test_0001_should_list_all_plans.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/subscription/plan/test_0001_should_raise_an_error_if_the_plan_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/plan/test_0002_should_be_successful_if_the_plan_is_valid.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/subscription/plan/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/plan/test_0002_should_return_a_product_id_if_the_plan_is_valid.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/subscription/plan/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/user/test_0001_should_list_all_users.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/user/test_0001_should_raise_an_error_if_the_cancelation_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/user/test_0001_should_raise_an_error_if_the_subscription_update_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/user/test_0001_should_raise_an_error_if_the_subscription_update_preview_is_invalid.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/user/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/subscription/user/test_0002_should_return_a_subscription_id_if_the_subscription_update_is_valid.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/subscription/user/test_0002_should_return_a_subscription_id_if_the_subscription_update_preview_is_valid.yml +60 -0
- data/test/vcr_cassettes/paddle_pay/subscription/user/test_0002_should_return_success_if_the_cancelation_is_valid.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/subscription/user/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/checkout/test_0001_should_list_all_checkouts.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/checkout/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/checkout/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/order/test_0001_should_list_all_orders.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/order/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/order/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/product/test_0001_should_list_all_products.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/transaction/product/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/product/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/subscription/test_0001_should_list_all_subscriptions.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/subscription/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/subscription/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/user/test_0001_should_list_all_users.yml +62 -0
- data/test/vcr_cassettes/paddle_pay/transaction/user/test_0002_should_raise_an_error_if_no_vendor_id_is_present.yml +61 -0
- data/test/vcr_cassettes/paddle_pay/transaction/user/test_0003_should_raise_an_error_if_no_vendor_auth_code_is_present.yml +61 -0
- metadata +358 -0
| @@ -0,0 +1,313 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://vendors.paddle.com/api/2.0/subscription/payments_reschedule
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: date=wrong+date&payment_id=10710436&vendor_auth_code=<VENDOR_AUTH_CODE>&vendor_id=<VENDOR_ID>
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  User-Agent:
         | 
| 11 | 
            +
                  - Faraday v1.0.1
         | 
| 12 | 
            +
                  Content-Type:
         | 
| 13 | 
            +
                  - application/x-www-form-urlencoded
         | 
| 14 | 
            +
                  Accept-Encoding:
         | 
| 15 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            +
                  Accept:
         | 
| 17 | 
            +
                  - "*/*"
         | 
| 18 | 
            +
              response:
         | 
| 19 | 
            +
                status:
         | 
| 20 | 
            +
                  code: 500
         | 
| 21 | 
            +
                  message: Internal Server Error
         | 
| 22 | 
            +
                headers:
         | 
| 23 | 
            +
                  Date:
         | 
| 24 | 
            +
                  - Sat, 23 May 2020 08:50:41 GMT
         | 
| 25 | 
            +
                  Content-Type:
         | 
| 26 | 
            +
                  - text/html; charset=UTF-8
         | 
| 27 | 
            +
                  Transfer-Encoding:
         | 
| 28 | 
            +
                  - chunked
         | 
| 29 | 
            +
                  Connection:
         | 
| 30 | 
            +
                  - keep-alive
         | 
| 31 | 
            +
                  Set-Cookie:
         | 
| 32 | 
            +
                  - __cfduid=d3a9dced044d1d329b5e5ca3f72738d921590223841; expires=Mon, 22-Jun-20
         | 
| 33 | 
            +
                    08:50:41 GMT; path=/; domain=.paddle.com; HttpOnly; SameSite=Lax
         | 
| 34 | 
            +
                  - paddle_session_vendor=eyJpdiI6IjhaMDJtajNTVDlkM2JqTmxJTzZaZ09YZWk1SzZzWFNhY1o2THpNcnlWemc9IiwidmFsdWUiOiJSZm9kUkdjQnIwWUN6dTFSQ3RndVFiRzQzTDhaYlF4UitrSlNwSWhxRmR4MzcxUm00bTY4SmRmRWc5bkwwaWhaeUQ2a2tya0hPckNYNkY5OXdnUFwveUE9PSIsIm1hYyI6IjgxYTljN2FmNzM5NmY0MTIyNzJhYTQ5Yjk1ZWZjMWU5MTg1YjhlNGUyMzQwNjE2MDdhM2MxMWY3ZGUwZmM4ZDEifQ%3D%3D;
         | 
| 35 | 
            +
                    expires=Sat, 23-May-2020 10:50:41 GMT; Max-Age=7200; path=/; domain=vendors.paddle.com;
         | 
| 36 | 
            +
                    secure; HttpOnly;SameSite=none;Secure
         | 
| 37 | 
            +
                  X-Powered-By:
         | 
| 38 | 
            +
                  - PHP/7.2.31
         | 
| 39 | 
            +
                  Cache-Control:
         | 
| 40 | 
            +
                  - no-cache
         | 
| 41 | 
            +
                  X-Frame-Options:
         | 
| 42 | 
            +
                  - sameorigin
         | 
| 43 | 
            +
                  P3p:
         | 
| 44 | 
            +
                  - CP="CAO CUR ADMa DEVa TAIa OUR DELa STP ONL NAV STA PUR"
         | 
| 45 | 
            +
                  Cf-Cache-Status:
         | 
| 46 | 
            +
                  - DYNAMIC
         | 
| 47 | 
            +
                  Expect-Ct:
         | 
| 48 | 
            +
                  - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
         | 
| 49 | 
            +
                  Server:
         | 
| 50 | 
            +
                  - cloudflare
         | 
| 51 | 
            +
                  Cf-Ray:
         | 
| 52 | 
            +
                  - 597d87e14b25d919-AMS
         | 
| 53 | 
            +
                  Cf-Request-Id:
         | 
| 54 | 
            +
                  - 02e25340c80000d91958320200000001
         | 
| 55 | 
            +
                body:
         | 
| 56 | 
            +
                  encoding: UTF-8
         | 
| 57 | 
            +
                  string: "<!DOCTYPE html>\n<html><head>\n\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\nnew
         | 
| 58 | 
            +
                    Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\nj=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\n'https://www.googletagmanager.com/gtm.js?id='+i+dl+\n'>m_auth=Fb4oJFizMlTSx4B_gheMMA>m_preview=env-8>m_cookies_win=x';f.parentNode.insertBefore(j,f);\n})(window,document,'script','dataLayer','GTM-WJ33DT3');</script>\n\n\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\nnew
         | 
| 59 | 
            +
                    Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\nj=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\n'https://www.googletagmanager.com/gtm.js?id='+i+dl+\n'>m_auth=n_ddGY4Pls1PP3G7VG0_uw>m_preview=env-12>m_cookies_win=x';f.parentNode.insertBefore(j,f);\n})(window,document,'script','dataLayer','GTM-MNM2T5X');</script>\n\n<script
         | 
| 60 | 
            +
                    src=\"https://static.paddle.com/assets/libraries/js/underscore.min.js\"></script>\n<script
         | 
| 61 | 
            +
                    src=\"https://static.paddle.com/assets/js/gtm_handler.js\"></script>\n<meta
         | 
| 62 | 
            +
                    http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><script type=\"text/javascript\">(window.NREUM||(NREUM={})).loader_config={xpid:\"VQEHWFBXCRACVVJVAgcCUFA=\",licenseKey:\"2cc7798054\",applicationID:\"213756564\"};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function
         | 
| 63 | 
            +
                    r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var
         | 
| 64 | 
            +
                    o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if(\"function\"==typeof
         | 
| 65 | 
            +
                    __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return
         | 
| 66 | 
            +
                    r}({1:[function(t,e,n){function r(t){try{s.console&&console.log(t)}catch(e){}}var
         | 
| 67 | 
            +
                    o,i=t(\"ee\"),a=t(25),s={};try{o=localStorage.getItem(\"__nr_flags\").split(\",\"),console&&\"function\"==typeof
         | 
| 68 | 
            +
                    console.log&&(s.console=!0,o.indexOf(\"dev\")!==-1&&(s.dev=!0),o.indexOf(\"nr_dev\")!==-1&&(s.nrDev=!0))}catch(c){}s.nrDev&&i.on(\"internal-error\",function(t){r(t.stack)}),s.dev&&i.on(\"fn-err\",function(t,e,n){r(n.stack)}),s.dev&&(r(\"NR
         | 
| 69 | 
            +
                    AGENT IN DEVELOPMENT MODE\"),r(\"flags: \"+a(s,function(t,e){return t}).join(\",
         | 
| 70 | 
            +
                    \")))},{}],2:[function(t,e,n){function r(t,e,n,r,s){try{l?l-=1:o(s||new UncaughtException(t,e,n),!0)}catch(f){try{i(\"ierr\",[f,c.now(),!0])}catch(d){}}return\"function\"==typeof
         | 
| 71 | 
            +
                    u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||\"Uncaught
         | 
| 72 | 
            +
                    error with no additional information\",this.sourceURL=e,this.line=n}function
         | 
| 73 | 
            +
                    o(t,e){var n=e?null:c.now();i(\"err\",[t,n])}var i=t(\"handle\"),a=t(26),s=t(\"ee\"),c=t(\"loader\"),f=t(\"gos\"),u=window.onerror,d=!1,p=\"nr@seenError\",l=0;c.features.err=!0,t(1),window.onerror=r;try{throw
         | 
| 74 | 
            +
                    new Error}catch(h){\"stack\"in h&&(t(13),t(12),\"addEventListener\"in window&&t(6),c.xhrWrappable&&t(14),d=!0)}s.on(\"fn-start\",function(t,e,n){d&&(l+=1)}),s.on(\"fn-err\",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),s.on(\"fn-end\",function(){d&&!this.thrown&&l>0&&(l-=1)}),s.on(\"internal-error\",function(t){i(\"ierr\",[t,c.now(),!0])})},{}],3:[function(t,e,n){t(\"loader\").features.ins=!0},{}],4:[function(t,e,n){function
         | 
| 75 | 
            +
                    r(){L++,C=g.hash,this[u]=y.now()}function o(){L--,g.hash!==C&&i(0,!0);var
         | 
| 76 | 
            +
                    t=y.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){E.emit(\"newURL\",[\"\"+g,e])}function
         | 
| 77 | 
            +
                    a(t,e){t.on(e,function(){this[e]=y.now()})}var s=\"-start\",c=\"-end\",f=\"-body\",u=\"fn\"+s,d=\"fn\"+c,p=\"cb\"+s,l=\"cb\"+c,h=\"jsTime\",m=\"fetch\",v=\"addEventListener\",w=window,g=w.location,y=t(\"loader\");if(w[v]&&y.xhrWrappable){var
         | 
| 78 | 
            +
                    x=t(10),b=t(11),E=t(8),O=t(6),R=t(13),P=t(7),T=t(14),N=t(9),M=t(\"ee\"),S=M.get(\"tracer\");t(16),y.features.spa=!0;var
         | 
| 79 | 
            +
                    C,L=0;M.on(u,r),M.on(p,r),M.on(d,o),M.on(l,o),M.buffer([u,d,\"xhr-done\",\"xhr-resolved\"]),O.buffer([u]),R.buffer([\"setTimeout\"+c,\"clearTimeout\"+s,u]),T.buffer([u,\"new-xhr\",\"send-xhr\"+s]),P.buffer([m+s,m+\"-done\",m+f+s,m+f+c]),E.buffer([\"newURL\"]),x.buffer([u]),b.buffer([\"propagate\",p,l,\"executor-err\",\"resolve\"+s]),S.buffer([u,\"no-\"+u]),N.buffer([\"new-jsonp\",\"cb-start\",\"jsonp-error\",\"jsonp-end\"]),a(T,\"send-xhr\"+s),a(M,\"xhr-resolved\"),a(M,\"xhr-done\"),a(P,m+s),a(P,m+\"-done\"),a(N,\"new-jsonp\"),a(N,\"jsonp-end\"),a(N,\"cb-start\"),E.on(\"pushState-end\",i),E.on(\"replaceState-end\",i),w[v](\"hashchange\",i,!0),w[v](\"load\",i,!0),w[v](\"popstate\",function(){i(0,L>1)},!0)}},{}],5:[function(t,e,n){function
         | 
| 80 | 
            +
                    r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var
         | 
| 81 | 
            +
                    o=t(\"ee\"),i=t(\"handle\"),a=t(13),s=t(12),c=\"learResourceTimings\",f=\"addEventListener\",u=\"resourcetimingbufferfull\",d=\"bstResource\",p=\"resource\",l=\"-start\",h=\"-end\",m=\"fn\"+l,v=\"fn\"+h,w=\"bstTimer\",g=\"pushState\",y=t(\"loader\");y.features.stn=!0,t(8),\"addEventListener\"in
         | 
| 82 | 
            +
                    window&&t(6);var x=NREUM.o.EV;o.on(m,function(t,e){var n=t[0];n instanceof
         | 
| 83 | 
            +
                    x&&(this.bstStart=y.now())}),o.on(v,function(t,e){var n=t[0];n instanceof
         | 
| 84 | 
            +
                    x&&i(\"bst\",[n,e,this.bstStart,y.now()])}),a.on(m,function(t,e,n){this.bstStart=y.now(),this.bstType=n}),a.on(v,function(t,e){i(w,[e,this.bstStart,y.now(),this.bstType])}),s.on(m,function(){this.bstStart=y.now()}),s.on(v,function(t,e){i(w,[e,this.bstStart,y.now(),\"requestAnimationFrame\"])}),o.on(g+l,function(t){this.time=y.now(),this.startPath=location.pathname+location.hash}),o.on(g+h,function(t){i(\"bstHist\",[location.pathname+location.hash,this.startPath,this.time])}),f
         | 
| 85 | 
            +
                    in window.performance&&(window.performance[\"c\"+c]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance[\"c\"+c]()},!1):window.performance[f](\"webkit\"+u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance[\"webkitC\"+c]()},!1)),document[f](\"scroll\",r,{passive:!0}),document[f](\"keypress\",r,!1),document[f](\"click\",r,!1)}},{}],6:[function(t,e,n){function
         | 
| 86 | 
            +
                    r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&o(e)}function
         | 
| 87 | 
            +
                    o(t){s.inPlace(t,[u,d],\"-\",i)}function i(t,e){return t[1]}var a=t(\"ee\").get(\"events\"),s=t(\"wrap-function\")(a,!0),c=t(\"gos\"),f=XMLHttpRequest,u=\"addEventListener\",d=\"removeEventListener\";e.exports=a,\"getPrototypeOf\"in
         | 
| 88 | 
            +
                    Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+\"-start\",function(t,e){var
         | 
| 89 | 
            +
                    n=t[1],r=c(n,\"nr@wrapped\",function(){function t(){if(\"function\"==typeof
         | 
| 90 | 
            +
                    n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,\"function\":n}[typeof
         | 
| 91 | 
            +
                    n];return e?s(e,\"fn-\",null,e.name||\"anonymous\"):n});this.wrapped=t[1]=r}),a.on(d+\"-start\",function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t,e,n){function
         | 
| 92 | 
            +
                    r(t,e,n){var r=t[e];\"function\"==typeof r&&(t[e]=function(){var t=i(arguments),e={};o.emit(n+\"before-start\",[t],e);var
         | 
| 93 | 
            +
                    a;e[m]&&e[m].dt&&(a=e[m].dt);var s=r.apply(this,t);return o.emit(n+\"start\",[t,a],s),s.then(function(t){return
         | 
| 94 | 
            +
                    o.emit(n+\"end\",[null,t],s),t},function(t){throw o.emit(n+\"end\",[t],s),t})})}var
         | 
| 95 | 
            +
                    o=t(\"ee\").get(\"fetch\"),i=t(26),a=t(25);e.exports=o;var s=window,c=\"fetch-\",f=c+\"body-\",u=[\"arrayBuffer\",\"blob\",\"json\",\"text\",\"formData\"],d=s.Request,p=s.Response,l=s.fetch,h=\"prototype\",m=\"nr@context\";d&&p&&l&&(a(u,function(t,e){r(d[h],e,f),r(p[h],e,f)}),r(s,\"fetch\",c),o.on(c+\"end\",function(t,e){var
         | 
| 96 | 
            +
                    n=this;if(e){var r=e.headers.get(\"content-length\");null!==r&&(n.rxSize=r),o.emit(c+\"done\",[null,e],n)}else
         | 
| 97 | 
            +
                    o.emit(c+\"done\",[t],n)}))},{}],8:[function(t,e,n){var r=t(\"ee\").get(\"history\"),o=t(\"wrap-function\")(r);e.exports=r;var
         | 
| 98 | 
            +
                    i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushState&&i.replaceState&&(a=i),o.inPlace(a,[\"pushState\",\"replaceState\"],\"-\")},{}],9:[function(t,e,n){function
         | 
| 99 | 
            +
                    r(t){function e(){c.emit(\"jsonp-end\",[],p),t.removeEventListener(\"load\",e,!1),t.removeEventListener(\"error\",n,!1)}function
         | 
| 100 | 
            +
                    n(){c.emit(\"jsonp-error\",[],p),c.emit(\"jsonp-end\",[],p),t.removeEventListener(\"load\",e,!1),t.removeEventListener(\"error\",n,!1)}var
         | 
| 101 | 
            +
                    r=t&&\"string\"==typeof t.nodeName&&\"script\"===t.nodeName.toLowerCase();if(r){var
         | 
| 102 | 
            +
                    o=\"function\"==typeof t.addEventListener;if(o){var a=i(t.src);if(a){var u=s(a),d=\"function\"==typeof
         | 
| 103 | 
            +
                    u.parent[u.key];if(d){var p={};f.inPlace(u.parent,[u.key],\"cb-\",p),t.addEventListener(\"load\",e,!1),t.addEventListener(\"error\",n,!1),c.emit(\"new-jsonp\",[t.src],p)}}}}}function
         | 
| 104 | 
            +
                    o(){return\"addEventListener\"in window}function i(t){var e=t.match(u);return
         | 
| 105 | 
            +
                    e?e[1]:null}function a(t,e){var n=t.match(p),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function
         | 
| 106 | 
            +
                    s(t){var e=t.match(d);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var
         | 
| 107 | 
            +
                    c=t(\"ee\").get(\"jsonp\"),f=t(\"wrap-function\")(c);if(e.exports=c,o()){var
         | 
| 108 | 
            +
                    u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*)\\.([^.]+)/,p=/^(\\w+)(\\.|$)(.*)$/,l=[\"appendChild\",\"insertBefore\",\"replaceChild\"];Node&&Node.prototype&&Node.prototype.appendChild?f.inPlace(Node.prototype,l,\"dom-\"):(f.inPlace(HTMLElement.prototype,l,\"dom-\"),f.inPlace(HTMLHeadElement.prototype,l,\"dom-\"),f.inPlace(HTMLBodyElement.prototype,l,\"dom-\")),c.on(\"dom-start\",function(t){r(t[0])})}},{}],10:[function(t,e,n){var
         | 
| 109 | 
            +
                    r=t(\"ee\").get(\"mutation\"),o=t(\"wrap-function\")(r),i=NREUM.o.MO;e.exports=r,i&&(window.MutationObserver=function(t){return
         | 
| 110 | 
            +
                    this instanceof i?new i(o(t,\"fn-\")):i.apply(this,arguments)},MutationObserver.prototype=i.prototype)},{}],11:[function(t,e,n){function
         | 
| 111 | 
            +
                    r(t){var e=a.context(),n=s(t,\"executor-\",e),r=new f(n);return a.context(r).getCtx=function(){return
         | 
| 112 | 
            +
                    e},a.emit(\"new-promise\",[r,e],e),r}function o(t,e){return e}var i=t(\"wrap-function\"),a=t(\"ee\").get(\"promise\"),s=i(a),c=t(25),f=NREUM.o.PR;e.exports=a,f&&(window.Promise=r,[\"all\",\"race\"].forEach(function(t){var
         | 
| 113 | 
            +
                    e=f[t];f[t]=function(n){function r(t){return function(){a.emit(\"propagate\",[null,!o],i),o=o||!t}}var
         | 
| 114 | 
            +
                    o=!1;c(n,function(e,n){Promise.resolve(n).then(r(\"all\"===t),r(!1))});var
         | 
| 115 | 
            +
                    i=e.apply(f,arguments),s=f.resolve(i);return s}}),[\"resolve\",\"reject\"].forEach(function(t){var
         | 
| 116 | 
            +
                    e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&a.emit(\"propagate\",[t,!0],n),n}}),f.prototype[\"catch\"]=function(t){return
         | 
| 117 | 
            +
                    this.then(null,t)},f.prototype=Object.create(f.prototype,{constructor:{value:r}}),c(Object.getOwnPropertyNames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),a.on(\"executor-start\",function(t){t[0]=s(t[0],\"resolve-\",this),t[1]=s(t[1],\"resolve-\",this)}),a.on(\"executor-err\",function(t,e,n){t[1](n)}),s.inPlace(f.prototype,[\"then\"],\"then-\",o),a.on(\"then-start\",function(t,e){this.promise=e,t[0]=s(t[0],\"cb-\",this),t[1]=s(t[1],\"cb-\",this)}),a.on(\"then-end\",function(t,e,n){this.nextPromise=n;var
         | 
| 118 | 
            +
                    r=this.promise;a.emit(\"propagate\",[r,!0],n)}),a.on(\"cb-end\",function(t,e,n){a.emit(\"propagate\",[n,!0],this.nextPromise)}),a.on(\"propagate\",function(t,e,n){this.getCtx&&!e||(this.getCtx=function(){if(t
         | 
| 119 | 
            +
                    instanceof Promise)var e=a.context(t);return e&&e.getCtx?e.getCtx():this})}),r.toString=function(){return\"\"+f})},{}],12:[function(t,e,n){var
         | 
| 120 | 
            +
                    r=t(\"ee\").get(\"raf\"),o=t(\"wrap-function\")(r),i=\"equestAnimationFrame\";e.exports=r,o.inPlace(window,[\"r\"+i,\"mozR\"+i,\"webkitR\"+i,\"msR\"+i],\"raf-\"),r.on(\"raf-start\",function(t){t[0]=o(t[0],\"fn-\")})},{}],13:[function(t,e,n){function
         | 
| 121 | 
            +
                    r(t,e,n){t[0]=a(t[0],\"fn-\",null,n)}function o(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],\"fn-\",this,n)}var
         | 
| 122 | 
            +
                    i=t(\"ee\").get(\"timer\"),a=t(\"wrap-function\")(i),s=\"setTimeout\",c=\"setInterval\",f=\"clearTimeout\",u=\"-start\",d=\"-\";e.exports=i,a.inPlace(window,[s,\"setImmediate\"],s+d),a.inPlace(window,[c],c+d),a.inPlace(window,[f,\"clearImmediate\"],f+d),i.on(c+u,r),i.on(s+u,o)},{}],14:[function(t,e,n){function
         | 
| 123 | 
            +
                    r(t,e){d.inPlace(e,[\"onreadystatechange\"],\"fn-\",s)}function o(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit(\"xhr-resolved\",[],t)),d.inPlace(t,g,\"fn-\",s)}function
         | 
| 124 | 
            +
                    i(t){y.push(t),h&&(b?b.then(a):v?v(a):(E=-E,O.data=E))}function a(){for(var
         | 
| 125 | 
            +
                    t=0;t<y.length;t++)r([],y[t]);y.length&&(y=[])}function s(t,e){return e}function
         | 
| 126 | 
            +
                    c(t,e){for(var n in t)e[n]=t[n];return e}t(6);var f=t(\"ee\"),u=f.get(\"xhr\"),d=t(\"wrap-function\")(u),p=NREUM.o,l=p.XHR,h=p.MO,m=p.PR,v=p.SI,w=\"readystatechange\",g=[\"onload\",\"onerror\",\"onabort\",\"onloadstart\",\"onloadend\",\"onprogress\",\"ontimeout\"],y=[];e.exports=u;var
         | 
| 127 | 
            +
                    x=window.XMLHttpRequest=function(t){var e=new l(t);try{u.emit(\"new-xhr\",[e],e),e.addEventListener(w,o,!1)}catch(n){try{u.emit(\"internal-error\",[n])}catch(r){}}return
         | 
| 128 | 
            +
                    e};if(c(l,x),x.prototype=l.prototype,d.inPlace(x.prototype,[\"open\",\"send\"],\"-xhr-\",s),u.on(\"send-xhr-start\",function(t,e){r(t,e),i(e)}),u.on(\"open-xhr-start\",r),h){var
         | 
| 129 | 
            +
                    b=m&&m.resolve();if(!v&&!m){var E=1,O=document.createTextNode(E);new h(a).observe(O,{characterData:!0})}}else
         | 
| 130 | 
            +
                    f.on(\"fn-end\",function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t,e,n){function
         | 
| 131 | 
            +
                    r(t){if(!i(t))return null;var e=window.NREUM;if(!e.loader_config)return null;var
         | 
| 132 | 
            +
                    n=(e.loader_config.accountID||\"\").toString()||null,r=(e.loader_config.agentID||\"\").toString()||null,s=(e.loader_config.trustKey||\"\").toString()||null;if(!n||!r)return
         | 
| 133 | 
            +
                    null;var c=a.generateCatId(),f=a.generateCatId(),u=Date.now(),d=o(c,f,u,n,r,s);return{header:d,guid:c,traceId:f,timestamp:u}}function
         | 
| 134 | 
            +
                    o(t,e,n,r,o,i){var a=\"btoa\"in window&&\"function\"==typeof window.btoa;if(!a)return
         | 
| 135 | 
            +
                    null;var s={v:[0,1],d:{ty:\"Browser\",ac:r,ap:o,id:t,tr:e,ti:n}};return i&&r!==i&&(s.d.tk=i),btoa(JSON.stringify(s))}function
         | 
| 136 | 
            +
                    i(t){var e=!1,n=!1,r={};if(\"init\"in NREUM&&\"distributed_tracing\"in NREUM.init&&(r=NREUM.init.distributed_tracing,n=!!r.enabled),n)if(t.sameOrigin)e=!0;else
         | 
| 137 | 
            +
                    if(r.allowed_origins instanceof Array)for(var o=0;o<r.allowed_origins.length;o++){var
         | 
| 138 | 
            +
                    i=s(r.allowed_origins[o]);if(t.hostname===i.hostname&&t.protocol===i.protocol&&t.port===i.port){e=!0;break}}return
         | 
| 139 | 
            +
                    n&&e}var a=t(23),s=t(17);e.exports={generateTracePayload:r,shouldGenerateTrace:i}},{}],16:[function(t,e,n){function
         | 
| 140 | 
            +
                    r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var
         | 
| 141 | 
            +
                    r=0;r<p;r++)t.removeEventListener(d[r],this.listener,!1);e.aborted||(n.duration=a.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==e.status&&(e.status=0):i(this,t),n.cbTime=this.cbTime,u.emit(\"xhr-done\",[t],t),s(\"xhr\",[e,n,this.startTime]))}}function
         | 
| 142 | 
            +
                    o(t,e){var n=c(e),r=t.params;r.host=n.hostname+\":\"+n.port,r.pathname=n.pathname,t.parsedOrigin=c(e),t.sameOrigin=t.parsedOrigin.sameOrigin}function
         | 
| 143 | 
            +
                    i(t,e){t.params.status=e.status;var n=v(e,t.lastSize);if(n&&(t.metrics.rxSize=n),t.sameOrigin){var
         | 
| 144 | 
            +
                    r=e.getResponseHeader(\"X-NewRelic-App-Data\");r&&(t.params.cat=r.split(\",
         | 
| 145 | 
            +
                    \").pop())}t.loadCaptureCalled=!0}var a=t(\"loader\");if(a.xhrWrappable){var
         | 
| 146 | 
            +
                    s=t(\"handle\"),c=t(17),f=t(15).generateTracePayload,u=t(\"ee\"),d=[\"load\",\"error\",\"abort\",\"timeout\"],p=d.length,l=t(\"id\"),h=t(21),m=t(20),v=t(18),w=window.XMLHttpRequest;a.features.xhr=!0,t(14),t(7),u.on(\"new-xhr\",function(t){var
         | 
| 147 | 
            +
                    e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,e.loadCaptureCalled=!1,t.addEventListener(\"load\",function(n){i(e,t)},!1),h&&(h>34||h<10)||window.opera||t.addEventListener(\"progress\",function(t){e.lastSize=t.loaded},!1)}),u.on(\"open-xhr-start\",function(t){this.params={method:t[0]},o(this,t[1]),this.metrics={}}),u.on(\"open-xhr-end\",function(t,e){\"loader_config\"in
         | 
| 148 | 
            +
                    NREUM&&\"xpid\"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader(\"X-NewRelic-ID\",NREUM.loader_config.xpid);var
         | 
| 149 | 
            +
                    n=f(this.parsedOrigin);n&&n.header&&(e.setRequestHeader(\"newrelic\",n.header),this.dt=n)}),u.on(\"send-xhr-start\",function(t,e){var
         | 
| 150 | 
            +
                    n=this.metrics,r=t[0],o=this;if(n&&r){var i=m(r);i&&(n.txSize=i)}this.startTime=a.now(),this.listener=function(t){try{\"abort\"!==t.type||o.loadCaptureCalled||(o.params.aborted=!0),(\"load\"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||\"function\"!=typeof
         | 
| 151 | 
            +
                    e.onload))&&o.end(e)}catch(n){try{u.emit(\"internal-error\",[n])}catch(r){}}};for(var
         | 
| 152 | 
            +
                    s=0;s<p;s++)e.addEventListener(d[s],this.listener,!1)}),u.on(\"xhr-cb-time\",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&\"function\"==typeof
         | 
| 153 | 
            +
                    n.onload||this.end(n)}),u.on(\"xhr-load-added\",function(t,e){var n=\"\"+l(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),u.on(\"xhr-load-removed\",function(t,e){var
         | 
| 154 | 
            +
                    n=\"\"+l(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),u.on(\"addEventListener-end\",function(t,e){e
         | 
| 155 | 
            +
                    instanceof w&&\"load\"===t[0]&&u.emit(\"xhr-load-added\",[t[1],t[2]],e)}),u.on(\"removeEventListener-end\",function(t,e){e
         | 
| 156 | 
            +
                    instanceof w&&\"load\"===t[0]&&u.emit(\"xhr-load-removed\",[t[1],t[2]],e)}),u.on(\"fn-start\",function(t,e,n){e
         | 
| 157 | 
            +
                    instanceof w&&(\"onload\"===n&&(this.onload=!0),(\"load\"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),u.on(\"fn-end\",function(t,e){this.xhrCbStart&&u.emit(\"xhr-cb-time\",[a.now()-this.xhrCbStart,this.onload,e],e)}),u.on(\"fetch-before-start\",function(t){var
         | 
| 158 | 
            +
                    e,n=t[1]||{};\"string\"==typeof t[0]?e=t[0]:t[0]&&t[0].url&&(e=t[0].url),e&&(this.parsedOrigin=c(e),this.sameOrigin=this.parsedOrigin.sameOrigin);var
         | 
| 159 | 
            +
                    r=f(this.parsedOrigin);if(r&&r.header){var o=r.header;if(\"string\"==typeof
         | 
| 160 | 
            +
                    t[0]){var i={};for(var a in n)i[a]=n[a];i.headers=new Headers(n.headers||{}),i.headers.set(\"newrelic\",o),this.dt=r,t.length>1?t[1]=i:t.push(i)}else
         | 
| 161 | 
            +
                    t[0]&&t[0].headers&&(t[0].headers.append(\"newrelic\",o),this.dt=r)}})}},{}],17:[function(t,e,n){var
         | 
| 162 | 
            +
                    r={};e.exports=function(t){if(t in r)return r[t];var e=document.createElement(\"a\"),n=window.location,o={};e.href=t,o.port=e.port;var
         | 
| 163 | 
            +
                    i=e.href.split(\"://\");!o.port&&i[1]&&(o.port=i[1].split(\"/\")[0].split(\"@\").pop().split(\":\")[1]),o.port&&\"0\"!==o.port||(o.port=\"https\"===i[0]?\"443\":\"80\"),o.hostname=e.hostname||n.hostname,o.pathname=e.pathname,o.protocol=i[0],\"/\"!==o.pathname.charAt(0)&&(o.pathname=\"/\"+o.pathname);var
         | 
| 164 | 
            +
                    a=!e.protocol||\":\"===e.protocol||e.protocol===n.protocol,s=e.hostname===document.domain&&e.port===n.port;return
         | 
| 165 | 
            +
                    o.sameOrigin=a&&(!e.hostname||s),\"/\"===o.pathname&&(r[t]=o),o}},{}],18:[function(t,e,n){function
         | 
| 166 | 
            +
                    r(t,e){var n=t.responseType;return\"json\"===n&&null!==e?e:\"arraybuffer\"===n||\"blob\"===n||\"json\"===n?o(t.response):\"text\"===n||\"document\"===n||\"\"===n||void
         | 
| 167 | 
            +
                    0===n?o(t.responseText):void 0}var o=t(20);e.exports=r},{}],19:[function(t,e,n){function
         | 
| 168 | 
            +
                    r(){}function o(t,e,n){return function(){return i(t,[f.now()].concat(s(arguments)),e?null:this,n),e?void
         | 
| 169 | 
            +
                    0:this}}var i=t(\"handle\"),a=t(25),s=t(26),c=t(\"ee\").get(\"tracer\"),f=t(\"loader\"),u=NREUM;\"undefined\"==typeof
         | 
| 170 | 
            +
                    window.newrelic&&(newrelic=u);var d=[\"setPageViewName\",\"setCustomAttribute\",\"setErrorHandler\",\"finished\",\"addToTrace\",\"inlineHit\",\"addRelease\"],p=\"api-\",l=p+\"ixn-\";a(d,function(t,e){u[e]=o(p+e,!0,\"api\")}),u.addPageAction=o(p+\"addPageAction\",!0),u.setCurrentRouteName=o(p+\"routeName\",!0),e.exports=newrelic,u.interaction=function(){return(new
         | 
| 171 | 
            +
                    r).get()};var h=r.prototype={createTracer:function(t,e){var n={},r=this,o=\"function\"==typeof
         | 
| 172 | 
            +
                    e;return i(l+\"tracer\",[f.now(),t,n],r),function(){if(c.emit((o?\"\":\"no-\")+\"fn-start\",[f.now(),r,o],n),o)try{return
         | 
| 173 | 
            +
                    e.apply(this,arguments)}catch(t){throw c.emit(\"fn-err\",[arguments,this,t],n),t}finally{c.emit(\"fn-end\",[f.now()],n)}}}};a(\"actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get\".split(\",\"),function(t,e){h[e]=o(l+e)}),newrelic.noticeError=function(t,e){\"string\"==typeof
         | 
| 174 | 
            +
                    t&&(t=new Error(t)),i(\"err\",[t,f.now(),!1,e])}},{}],20:[function(t,e,n){e.exports=function(t){if(\"string\"==typeof
         | 
| 175 | 
            +
                    t&&t.length)return t.length;if(\"object\"==typeof t){if(\"undefined\"!=typeof
         | 
| 176 | 
            +
                    ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if(\"undefined\"!=typeof
         | 
| 177 | 
            +
                    Blob&&t instanceof Blob&&t.size)return t.size;if(!(\"undefined\"!=typeof FormData&&t
         | 
| 178 | 
            +
                    instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],21:[function(t,e,n){var
         | 
| 179 | 
            +
                    r=0,o=navigator.userAgent.match(/Firefox[\\/\\s](\\d+\\.\\d+)/);o&&(r=+o[1]),e.exports=r},{}],22:[function(t,e,n){function
         | 
| 180 | 
            +
                    r(t,e){var n=t.getEntries();n.forEach(function(t){\"first-paint\"===t.name?c(\"timing\",[\"fp\",Math.floor(t.startTime)]):\"first-contentful-paint\"===t.name&&c(\"timing\",[\"fcp\",Math.floor(t.startTime)])})}function
         | 
| 181 | 
            +
                    o(t,e){var n=t.getEntries();n.length>0&&c(\"lcp\",[n[n.length-1]])}function
         | 
| 182 | 
            +
                    i(t){if(t instanceof u&&!p){var e,n=Math.round(t.timeStamp);e=n>1e12?Date.now()-n:f.now()-n,p=!0,c(\"timing\",[\"fi\",n,{type:t.type,fid:e}])}}if(!(\"init\"in
         | 
| 183 | 
            +
                    NREUM&&\"page_view_timing\"in NREUM.init&&\"enabled\"in NREUM.init.page_view_timing&&NREUM.init.page_view_timing.enabled===!1)){var
         | 
| 184 | 
            +
                    a,s,c=t(\"handle\"),f=t(\"loader\"),u=NREUM.o.EV;if(\"PerformanceObserver\"in
         | 
| 185 | 
            +
                    window&&\"function\"==typeof window.PerformanceObserver){a=new PerformanceObserver(r),s=new
         | 
| 186 | 
            +
                    PerformanceObserver(o);try{a.observe({entryTypes:[\"paint\"]}),s.observe({entryTypes:[\"largest-contentful-paint\"]})}catch(d){}}if(\"addEventListener\"in
         | 
| 187 | 
            +
                    document){var p=!1,l=[\"click\",\"keydown\",\"mousedown\",\"pointerdown\",\"touchstart\"];l.forEach(function(t){document.addEventListener(t,i,!1)})}}},{}],23:[function(t,e,n){function
         | 
| 188 | 
            +
                    r(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(e=r.getRandomValues(new
         | 
| 189 | 
            +
                    Uint8Array(31)));for(var o,i=\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\",a=\"\",s=0;s<i.length;s++)o=i[s],\"x\"===o?a+=t().toString(16):\"y\"===o?(o=3&t()|8,a+=o.toString(16)):a+=o;return
         | 
| 190 | 
            +
                    a}function o(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&Uint8Array&&(e=r.getRandomValues(new
         | 
| 191 | 
            +
                    Uint8Array(31)));for(var o=[],i=0;i<16;i++)o.push(t().toString(16));return
         | 
| 192 | 
            +
                    o.join(\"\")}e.exports={generateUuid:r,generateCatId:o}},{}],24:[function(t,e,n){function
         | 
| 193 | 
            +
                    r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var
         | 
| 194 | 
            +
                    n=i.split(\".\"),r=e.split(\".\"),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var
         | 
| 195 | 
            +
                    o=null,i=null,a=/Version\\/(\\S+)\\s+Safari/;if(navigator.userAgent){var s=navigator.userAgent,c=s.match(a);c&&s.indexOf(\"Chrome\")===-1&&s.indexOf(\"Chromium\")===-1&&(o=\"Safari\",i=c[1])}e.exports={agent:o,version:i,match:r}},{}],25:[function(t,e,n){function
         | 
| 196 | 
            +
                    r(t,e){var n=[],r=\"\",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return
         | 
| 197 | 
            +
                    n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],26:[function(t,e,n){function
         | 
| 198 | 
            +
                    r(t,e,n){e||(e=0),\"undefined\"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return
         | 
| 199 | 
            +
                    i}e.exports=r},{}],27:[function(t,e,n){e.exports={exists:\"undefined\"!=typeof
         | 
| 200 | 
            +
                    window.performance&&window.performance.timing&&\"undefined\"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(t,e,n){function
         | 
| 201 | 
            +
                    r(){}function o(t){function e(t){return t&&t instanceof r?t:t?c(t,s,i):i()}function
         | 
| 202 | 
            +
                    n(n,r,o,i){if(!p.aborted||i){t&&t(n,r,o);for(var a=e(o),s=m(n),c=s.length,f=0;f<c;f++)s[f].apply(a,r);var
         | 
| 203 | 
            +
                    d=u[y[n]];return d&&d.push([x,n,r,a]),a}}function l(t,e){g[t]=m(t).concat(e)}function
         | 
| 204 | 
            +
                    h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function
         | 
| 205 | 
            +
                    m(t){return g[t]||[]}function v(t){return d[t]=d[t]||o(n)}function w(t,e){f(t,function(t,n){e=e||\"feature\",y[n]=e,e
         | 
| 206 | 
            +
                    in u||(u[e]=[])})}var g={},y={},x={on:l,addEventListener:l,removeEventListener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:a,aborted:!1};return
         | 
| 207 | 
            +
                    x}function i(){return new r}function a(){(u.api||u.feature)&&(p.aborted=!0,u=p.backlog={})}var
         | 
| 208 | 
            +
                    s=\"nr@context\",c=t(\"gos\"),f=t(25),u={},d={},p=e.exports=o();p.backlog=u},{}],gos:[function(t,e,n){function
         | 
| 209 | 
            +
                    r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return
         | 
| 210 | 
            +
                    Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return
         | 
| 211 | 
            +
                    t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function
         | 
| 212 | 
            +
                    r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t(\"ee\").get(\"handle\");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function
         | 
| 213 | 
            +
                    r(t){var e=typeof t;return!t||\"object\"!==e&&\"function\"!==e?-1:t===window?0:a(t,i,function(){return
         | 
| 214 | 
            +
                    o++})}var o=1,i=\"nr@id\",a=t(\"gos\");e.exports=r},{}],loader:[function(t,e,n){function
         | 
| 215 | 
            +
                    r(){if(!E++){var t=b.info=NREUM.info,e=l.getElementsByTagName(\"script\")[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return
         | 
| 216 | 
            +
                    u.abort();f(y,function(e,n){t[e]||(t[e]=n)}),c(\"mark\",[\"onload\",a()+b.offset],null,\"api\");var
         | 
| 217 | 
            +
                    n=l.createElement(\"script\");n.src=\"https://\"+t.agent,e.parentNode.insertBefore(n,e)}}function
         | 
| 218 | 
            +
                    o(){\"complete\"===l.readyState&&i()}function i(){c(\"mark\",[\"domContent\",a()+b.offset],null,\"api\")}function
         | 
| 219 | 
            +
                    a(){return O.exists&&performance.now?Math.round(performance.now()):(s=Math.max((new
         | 
| 220 | 
            +
                    Date).getTime(),s))-b.offset}var s=(new Date).getTime(),c=t(\"handle\"),f=t(25),u=t(\"ee\"),d=t(24),p=window,l=p.document,h=\"addEventListener\",m=\"attachEvent\",v=p.XMLHttpRequest,w=v&&v.prototype;NREUM.o={ST:setTimeout,SI:p.setImmediate,CT:clearTimeout,XHR:v,REQ:p.Request,EV:p.Event,PR:p.Promise,MO:p.MutationObserver};var
         | 
| 221 | 
            +
                    g=\"\"+location,y={beacon:\"bam.nr-data.net\",errorBeacon:\"bam.nr-data.net\",agent:\"js-agent.newrelic.com/nr-spa-1167.min.js\"},x=v&&w&&w[h]&&!/CriOS/.test(navigator.userAgent),b=e.exports={offset:s,now:a,origin:g,features:{},xhrWrappable:x,userAgent:d};t(19),t(22),l[h]?(l[h](\"DOMContentLoaded\",i,!1),p[h](\"load\",r,!1)):(l[m](\"onreadystatechange\",o),p[m](\"onload\",r)),c(\"mark\",[\"firstbyte\",s],null,\"api\");var
         | 
| 222 | 
            +
                    E=0,O=t(27)},{}],\"wrap-function\":[function(t,e,n){function r(t){return!(t&&t
         | 
| 223 | 
            +
                    instanceof Function&&t.apply&&!t[a])}var o=t(\"ee\"),i=t(26),a=\"nr@original\",s=Object.prototype.hasOwnProperty,c=!1;e.exports=function(t,e){function
         | 
| 224 | 
            +
                    n(t,e,n,o){function nrWrapper(){var r,a,s,c;try{a=this,r=i(arguments),s=\"function\"==typeof
         | 
| 225 | 
            +
                    n?n(r,a):n||{}}catch(f){p([f,\"\",[r,a,o],s])}u(e+\"start\",[r,a,o],s);try{return
         | 
| 226 | 
            +
                    c=t.apply(a,r)}catch(d){throw u(e+\"err\",[r,a,d],s),d}finally{u(e+\"end\",[r,a,c],s)}}return
         | 
| 227 | 
            +
                    r(t)?t:(e||(e=\"\"),nrWrapper[a]=t,d(t,nrWrapper),nrWrapper)}function f(t,e,o,i){o||(o=\"\");var
         | 
| 228 | 
            +
                    a,s,c,f=\"-\"===o.charAt(0);for(c=0;c<e.length;c++)s=e[c],a=t[s],r(a)||(t[s]=n(a,f?s+o:o,i,s))}function
         | 
| 229 | 
            +
                    u(n,r,o){if(!c||e){var i=c;c=!0;try{t.emit(n,r,o,e)}catch(a){p([a,n,r,o])}c=i}}function
         | 
| 230 | 
            +
                    d(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return
         | 
| 231 | 
            +
                    n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return
         | 
| 232 | 
            +
                    t[n]=e,e}})}),e}catch(r){p([r])}for(var o in t)s.call(t,o)&&(e[o]=t[o]);return
         | 
| 233 | 
            +
                    e}function p(e){try{t.emit(\"internal-error\",e)}catch(n){}}return t||(t=o),n.inPlace=f,n.flag=a,n}},{}]},{},[\"loader\",2,16,5,3,4]);</script>\n<meta
         | 
| 234 | 
            +
                    content=\"width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no\"
         | 
| 235 | 
            +
                    name=\"viewport\">\n<title>An Error Occurred | Paddle</title>\n<link rel=\"apple-touch-icon\"
         | 
| 236 | 
            +
                    sizes=\"180x180\" href=\"/assets/images/favicons/apple-touch-icon.png\">\n<link
         | 
| 237 | 
            +
                    rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"/assets/images/favicons/favicon-32x32.png\">\n<link
         | 
| 238 | 
            +
                    rel=\"icon\" type=\"image/png\" sizes=\"16x16\" href=\"/assets/images/favicons/favicon-16x16.png\">\n<style
         | 
| 239 | 
            +
                    type=\"text/css\">\n\t\thtml, body {\n\t\t\tfont-family: sans-serif;\n\t\t\t-ms-text-size-adjust:
         | 
| 240 | 
            +
                    100%;\n\t\t\t-webkit-text-size-adjust: 100%;\n\t\t\tbackground-color: #F7F8FB;\n\t\t\theight:
         | 
| 241 | 
            +
                    100%;\n\t\t\t-webkit-font-smoothing: antialiased;\n\t\t}\n\n\t\tbody {\n\t\t\tmargin:
         | 
| 242 | 
            +
                    0;\n\t\t\tpadding: 0;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\talign-items:
         | 
| 243 | 
            +
                    center;\n\t\t\tjustify-content: center;\n\t\t}\n\n\t\t.message {\n\t\t\ttext-align:
         | 
| 244 | 
            +
                    center;\n\t\t\talign-self: center;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction:
         | 
| 245 | 
            +
                    column;\n\t\t\talign-items: center;\n\t\t\tpadding: 0px 20px;\n\t\t\tmax-width:
         | 
| 246 | 
            +
                    450px;\n\t\t}\n\n\t\t.message__title {\n\t\t\tfont-size: 22px;\n\t\t\tfont-weight:
         | 
| 247 | 
            +
                    100;\n\t\t\tmargin-top: 15px;\n\t\t\tcolor: #47494E;\n\t\t\tmargin-bottom:
         | 
| 248 | 
            +
                    8px;\n\t\t}\n\n\t\tp {\n\t\t\t-webkit-margin-after: 0px;\n\t\t\t-webkit-margin-before:
         | 
| 249 | 
            +
                    0px;\n\t\t\tfont-size: 15px;\n\t\t\tcolor: #7F828B;\n\t\t\tline-height: 21px;\n\t\t\tmargin-bottom:
         | 
| 250 | 
            +
                    4px;\n\t\t}\n\n\t\t.btn {\n\t\t\ttext-decoration: none;\n\t\t\tpadding: 8px
         | 
| 251 | 
            +
                    15px;\n\t\t\tborder-radius: 4px;\n\t\t\tmargin-top: 10px;\n\t\t\tfont-size:
         | 
| 252 | 
            +
                    14px;\n\t\t\tcolor: #7F828B;\n\t\t\tborder: 1px solid #7F828B;\n\t\t}\n\n\t\t.hk-logo,
         | 
| 253 | 
            +
                    .app-icon {\n\t\t\tfill: #DBE1EC;\n\t\t}\n\n\t\t.info {\n\t\t\tfill: #9FABBC;\n\t\t}\n\n\t\tbody.friendly
         | 
| 254 | 
            +
                    {\n\t\t\tbackground: -webkit-linear-gradient(-45deg, #8363a1 0%, #74a8c3 100%);\n\t\t\tbackground:
         | 
| 255 | 
            +
                    linear-gradient(135deg, #8363a1 0%, #74a8c3 100%);\n\t\t}\n\n\t\tbody.friendly
         | 
| 256 | 
            +
                    .message__title {\n\t\t\tcolor: #fff;\n\t\t}\n\n\t\tbody.friendly p {\n\t\t\tcolor:
         | 
| 257 | 
            +
                    rgba(255, 255, 255, 0.6);\n\t\t}\n\n\t\tbody.friendly .hk-logo, body.friendly
         | 
| 258 | 
            +
                    .app-icon {\n\t\t\tfill: rgba(255, 255, 255, 0.9);\n\t\t}\n\n\t\tbody.friendly
         | 
| 259 | 
            +
                    .info {\n\t\t\tfill: rgba(255, 255, 255, 0.9);\n\t\t}\n\n\t\tbody.friendly
         | 
| 260 | 
            +
                    .btn {\n\t\t\tcolor: #fff;\n\t\t\tborder: 1px solid rgba(255, 255, 255, 0.9);\n\t\t}\n\n\t\t.info_area
         | 
| 261 | 
            +
                    {\n\t\t\tposition: fixed;\n\t\t\tright: 12px;\n\t\t\tbottom: 12px;\n\t\t}\n\n\t\t.logo
         | 
| 262 | 
            +
                    {\n\t\t\twidth: 66px;\n\t\t}\n\n\t\t.top-padding {\n\t\t\tpadding-top: 15px;\n\t\t}\n\n\t\ta.action:link,
         | 
| 263 | 
            +
                    a.action:active, a.action:visited {\n\t\t\tcolor: #7F828B;\n\t\t\ttext-decoration:
         | 
| 264 | 
            +
                    none;\n\t\t\tfont-size: 13px;\n\t\t\tfont-weight: bold;\n\t\t\tdisplay: inline-block;\n\t\t\tpadding:
         | 
| 265 | 
            +
                    5px 10px;\n\t\t\toutline: none;\n\t\t\tborder: 1px solid #B9B9C8;\n\t\t\tborder-radius:
         | 
| 266 | 
            +
                    3px;\n\t\t}\n\t</style>\n<base href=\".\" target=\"_parent\">\n<script type=\"text/javascript\">\n\t\tfunction
         | 
| 267 | 
            +
                    errorReport() {\n\t\t\tvar form = 'https://airtable.com/shrPz6AZoaoGQWkli?';\n\t\t\tform
         | 
| 268 | 
            +
                    += 'prefill_Referring%20URL='+document.referrer;\n\t\t\tform += '&prefill_Error%20URL='+window.location.href;\n\n\t\t\twindow.location.href
         | 
| 269 | 
            +
                    = form;\n\t\t}\n\t</script>\n<style type=\"text/css\" id=\"cd554e29-ef51-47d0-be15-4d85161153ff\">.e98123fe-32de-468e-a576-55bb7a61531f
         | 
| 270 | 
            +
                    .close:hover, .e98123fe-32de-468e-a576-55bb7a61531f .close:focus { background-image:
         | 
| 271 | 
            +
                    url(\"data:image/png;base64,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\");
         | 
| 272 | 
            +
                    }\n\n\t\t.e98123fe-32de-468e-a576-55bb7a61531f .close { position: absolute;
         | 
| 273 | 
            +
                    opacity: 0; transform: scale(0.6); left: -8px; top: -8px; width: 16px; height:
         | 
| 274 | 
            +
                    16px; cursor: pointer; z-index: 1000; transition: opacity 275ms, transform
         | 
| 275 | 
            +
                    275ms cubic-bezier(0.175, 0.885, 0.32, 1.275), background 175ms; background:
         | 
| 276 | 
            +
                    url(\"data:image/png;base64,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\")
         | 
| 277 | 
            +
                    no-repeat border-box border-box; }\n\n\t\t@keyframes  fontbulger {\n\t\t\t0%
         | 
| 278 | 
            +
                    { transform: scale(1); }\n\t\t\t100% { transform: scale(1.2); }\n\t\t}\n\n\t\t.e98123fe-32de-468e-a576-55bb7a61531f
         | 
| 279 | 
            +
                    { animation: fontbulger 0.2s ease-in-out 0s 2 alternate; background-color:
         | 
| 280 | 
            +
                    rgba(238, 238, 238, 0.8); border-radius: 0.2em; color: rgb(170, 170, 170);
         | 
| 281 | 
            +
                    font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch:
         | 
| 282 | 
            +
                    inherit; font-size: inherit; line-height: inherit; font-family: inherit; position:
         | 
| 283 | 
            +
                    relative; transition-duration: 0.5s; transition-property: color, background-color;
         | 
| 284 | 
            +
                    transition-timing-function: ease-in-out; box-shadow: rgb(238, 238, 238) 0px
         | 
| 285 | 
            +
                    0px 12px; }\n\n\t\t.default-red-aa94e3d5-ab2f-4205-b74e-18ce31c7c0ce { background-color:
         | 
| 286 | 
            +
                    rgba(255, 128, 128, 0.8); color: rgb(0, 0, 0); box-shadow: rgb(255, 128, 128)
         | 
| 287 | 
            +
                    0px 0px 12px; }\n\n\t\t.default-orange-da01945e-1964-4d27-8a6c-3331e1fe7f14
         | 
| 288 | 
            +
                    { background-color: rgba(255, 210, 170, 0.8); color: rgb(0, 0, 0); box-shadow:
         | 
| 289 | 
            +
                    rgb(255, 210, 170) 0px 0px 12px; }\n\n\t\t.default-yellow-aaddcf5c-0e41-4f83-8a64-58c91f7c6250
         | 
| 290 | 
            +
                    { background-color: rgba(255, 255, 170, 0.8); color: rgb(0, 0, 0); box-shadow:
         | 
| 291 | 
            +
                    rgb(255, 255, 170) 0px 0px 12px; }\n\n\t\t.default-green-c4d41e0a-e40f-4c3f-91ad-2d66481614c2
         | 
| 292 | 
            +
                    { background-color: rgba(170, 255, 170, 0.8); color: rgb(0, 0, 0); box-shadow:
         | 
| 293 | 
            +
                    rgb(170, 255, 170) 0px 0px 12px; }\n\n\t\t.default-cyan-f88e8827-e652-4d79-a9d9-f6c8b8ec9e2b
         | 
| 294 | 
            +
                    { background-color: rgba(170, 255, 255, 0.8); color: rgb(0, 0, 0); box-shadow:
         | 
| 295 | 
            +
                    rgb(170, 255, 255) 0px 0px 12px; }\n\n\t\t.default-purple-c472dcdb-f2b8-41ab-bb1e-2fb293df172a
         | 
| 296 | 
            +
                    { background-color: rgba(255, 170, 255, 0.8); color: rgb(0, 0, 0); box-shadow:
         | 
| 297 | 
            +
                    rgb(255, 170, 255) 0px 0px 12px; }\n\n\t\t.default-grey-da7cb902-89c6-46fe-b0e7-d3b35aaf237a
         | 
| 298 | 
            +
                    { background-color: rgba(119, 119, 119, 0.8); color: rgb(255, 255, 255); box-shadow:
         | 
| 299 | 
            +
                    rgb(119, 119, 119) 0px 0px 12px; }\n\n\t</style>\n</head>\n<body>\n\n<noscript><iframe
         | 
| 300 | 
            +
                    src=\"https://www.googletagmanager.com/ns.html?id=GTM-WJ33DT3>m_auth=Fb4oJFizMlTSx4B_gheMMA>m_preview=env-8>m_cookies_win=x\"\nheight=\"0\"
         | 
| 301 | 
            +
                    width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript>\n\n\n<noscript><iframe
         | 
| 302 | 
            +
                    src=\"https://www.googletagmanager.com/ns.html?id=GTM-MNM2T5X>m_auth=n_ddGY4Pls1PP3G7VG0_uw>m_preview=env-12>m_cookies_win=x\"\nheight=\"0\"
         | 
| 303 | 
            +
                    width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript>\n\n<script
         | 
| 304 | 
            +
                    type=\"text/javascript\">\n\twindow.gtmHandler.triggerPageView('/checkout/error');\n\twindow.gtmHandler.triggerPageView('/dashboard/error');\n</script>\n<div
         | 
| 305 | 
            +
                    class=\"spacer\"></div>\n<div class=\"message\">\n<a href=\"javascript:window.history.back();\"><img
         | 
| 306 | 
            +
                    class=\"logo\" src=\"https://static.paddle.com/assets/images/error/maintenance-p.png\"
         | 
| 307 | 
            +
                    alt=\"Paddle\" border=\"0\"></a>\n<div class=\"message__title\">Whoops! Something
         | 
| 308 | 
            +
                    went wrong.</div>\n<p>An unexpected error occurred performing this action.</p>\n<p
         | 
| 309 | 
            +
                    class=\"top-padding\">\n<a class=\"action\" href=\"mailto:vendors@paddle.com\">Contact
         | 
| 310 | 
            +
                    Support</a>\n</p>\n</div>\n<script type=\"text/javascript\">window.NREUM||(NREUM={});NREUM.info={\"beacon\":\"bam.nr-data.net\",\"licenseKey\":\"2cc7798054\",\"applicationID\":\"213756564\",\"transactionName\":\"NVEDMBMCWxBRVEYNCwwbIAcVCloNH0FXCgANRj4FEQpqUW8HbRcRAEcCFggTQQpfWW0JARZcDgA=\",\"queueTime\":0,\"applicationTime\":52,\"atts\":\"GRYURlsYSE8SVhBeHx9J\",\"errorBeacon\":\"bam.nr-data.net\",\"agent\":\"\"}</script></body></html>"
         | 
| 311 | 
            +
                http_version: null
         | 
| 312 | 
            +
              recorded_at: Sat, 23 May 2020 08:50:41 GMT
         | 
| 313 | 
            +
            recorded_with: VCR 5.1.0
         | 
| @@ -0,0 +1,61 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://vendors.paddle.com/api/2.0/subscription/payments
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: vendor_auth_code=<VENDOR_AUTH_CODE>&vendor_id
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  User-Agent:
         | 
| 11 | 
            +
                  - Faraday v1.0.1
         | 
| 12 | 
            +
                  Content-Type:
         | 
| 13 | 
            +
                  - application/x-www-form-urlencoded
         | 
| 14 | 
            +
                  Accept-Encoding:
         | 
| 15 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            +
                  Accept:
         | 
| 17 | 
            +
                  - "*/*"
         | 
| 18 | 
            +
              response:
         | 
| 19 | 
            +
                status:
         | 
| 20 | 
            +
                  code: 200
         | 
| 21 | 
            +
                  message: OK
         | 
| 22 | 
            +
                headers:
         | 
| 23 | 
            +
                  Date:
         | 
| 24 | 
            +
                  - Sat, 23 May 2020 08:34:17 GMT
         | 
| 25 | 
            +
                  Content-Type:
         | 
| 26 | 
            +
                  - application/json
         | 
| 27 | 
            +
                  Transfer-Encoding:
         | 
| 28 | 
            +
                  - chunked
         | 
| 29 | 
            +
                  Connection:
         | 
| 30 | 
            +
                  - keep-alive
         | 
| 31 | 
            +
                  Set-Cookie:
         | 
| 32 | 
            +
                  - __cfduid=d3566a071cdd73e0009e54a80687c08b31590222857; expires=Mon, 22-Jun-20
         | 
| 33 | 
            +
                    08:34:17 GMT; path=/; domain=.paddle.com; HttpOnly; SameSite=Lax
         | 
| 34 | 
            +
                  - paddle_session_vendor=eyJpdiI6ImJzYmRLY0FsYXdHZTl1MXArNTN3NEg4RER2VDY4bXU3WkFIS0xzem40MDA9IiwidmFsdWUiOiJabnBKTThKQ1AxVzh3VnU2NWxESWI2UHc1bUs5clpVS0x1S044K0JNTzZlV05KSGlMeXhvRFdldTBOZG1SYkQ4VmtPQ0NaZFRwSFlCTHhkRlhGM3BVQT09IiwibWFjIjoiMDIzNzY5ZWQ5NGVjOWFjNTZkMjY3Njg3NjU5N2YwMDUyMzQ0YmMwN2JmNmJkZDc3NDU2MDJjMWM2NDA3MjE4NiJ9;
         | 
| 35 | 
            +
                    expires=Sat, 23-May-2020 10:34:17 GMT; Max-Age=7200; path=/; domain=vendors.paddle.com;
         | 
| 36 | 
            +
                    secure; HttpOnly;SameSite=none;Secure
         | 
| 37 | 
            +
                  X-Powered-By:
         | 
| 38 | 
            +
                  - PHP/7.2.31
         | 
| 39 | 
            +
                  Cache-Control:
         | 
| 40 | 
            +
                  - no-cache
         | 
| 41 | 
            +
                  X-Frame-Options:
         | 
| 42 | 
            +
                  - sameorigin
         | 
| 43 | 
            +
                  P3p:
         | 
| 44 | 
            +
                  - CP="CAO CUR ADMa DEVa TAIa OUR DELa STP ONL NAV STA PUR"
         | 
| 45 | 
            +
                  Cf-Cache-Status:
         | 
| 46 | 
            +
                  - DYNAMIC
         | 
| 47 | 
            +
                  Expect-Ct:
         | 
| 48 | 
            +
                  - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
         | 
| 49 | 
            +
                  Server:
         | 
| 50 | 
            +
                  - cloudflare
         | 
| 51 | 
            +
                  Cf-Ray:
         | 
| 52 | 
            +
                  - 597d6fdc19af0b6b-AMS
         | 
| 53 | 
            +
                  Cf-Request-Id:
         | 
| 54 | 
            +
                  - 02e2443d9000000b6bb5299200000001
         | 
| 55 | 
            +
                body:
         | 
| 56 | 
            +
                  encoding: ASCII-8BIT
         | 
| 57 | 
            +
                  string: '{"success":false,"error":{"code":107,"message":"You don''t have permission
         | 
| 58 | 
            +
                    to access this resource"}}'
         | 
| 59 | 
            +
                http_version: null
         | 
| 60 | 
            +
              recorded_at: Sat, 23 May 2020 08:34:17 GMT
         | 
| 61 | 
            +
            recorded_with: VCR 5.1.0
         | 
| @@ -0,0 +1,60 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://vendors.paddle.com/api/2.0/payment/refund
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: order_id=10710436&vendor_auth_code=<VENDOR_AUTH_CODE>&vendor_id=<VENDOR_ID>
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  User-Agent:
         | 
| 11 | 
            +
                  - Faraday v1.0.1
         | 
| 12 | 
            +
                  Content-Type:
         | 
| 13 | 
            +
                  - application/x-www-form-urlencoded
         | 
| 14 | 
            +
                  Accept-Encoding:
         | 
| 15 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            +
                  Accept:
         | 
| 17 | 
            +
                  - "*/*"
         | 
| 18 | 
            +
              response:
         | 
| 19 | 
            +
                status:
         | 
| 20 | 
            +
                  code: 200
         | 
| 21 | 
            +
                  message: OK
         | 
| 22 | 
            +
                headers:
         | 
| 23 | 
            +
                  Date:
         | 
| 24 | 
            +
                  - Sun, 24 May 2020 15:52:48 GMT
         | 
| 25 | 
            +
                  Content-Type:
         | 
| 26 | 
            +
                  - application/json
         | 
| 27 | 
            +
                  Transfer-Encoding:
         | 
| 28 | 
            +
                  - chunked
         | 
| 29 | 
            +
                  Connection:
         | 
| 30 | 
            +
                  - keep-alive
         | 
| 31 | 
            +
                  Set-Cookie:
         | 
| 32 | 
            +
                  - __cfduid=d718a73dd3ca9f373ba6b29c30dc19cf41590335568; expires=Tue, 23-Jun-20
         | 
| 33 | 
            +
                    15:52:48 GMT; path=/; domain=.paddle.com; HttpOnly; SameSite=Lax
         | 
| 34 | 
            +
                  - paddle_session_vendor=eyJpdiI6InlCOUpKMzhcL2RMQmhIK1pNeFVnRGxwUlRsOFwvRG1wVWcwMEJmY21sb1pldz0iLCJ2YWx1ZSI6IlA4c3A5T0Z3clZJXC9SWkVYOXFjVzRhelVcL21zbjg2ekdDTFJ5SnVubVwveFYyemxQRzU0cVdVSzIrMmVPMDY2UE9sV2xOSUF3Q0phVXU4bVwveXRVS1JuQT09IiwibWFjIjoiM2ZhMjM2OTNmOGFjODQ5NDAxMTA0OTYwYTRiNDgyMTc2ZmIwOGU3MjhlYThjNTBhZDljYjllZjhlODdlMThmNCJ9;
         | 
| 35 | 
            +
                    expires=Sun, 24-May-2020 17:52:48 GMT; Max-Age=7200; path=/; domain=vendors.paddle.com;
         | 
| 36 | 
            +
                    secure; HttpOnly;SameSite=none;Secure
         | 
| 37 | 
            +
                  X-Powered-By:
         | 
| 38 | 
            +
                  - PHP/7.2.31
         | 
| 39 | 
            +
                  Cache-Control:
         | 
| 40 | 
            +
                  - no-cache
         | 
| 41 | 
            +
                  X-Frame-Options:
         | 
| 42 | 
            +
                  - sameorigin
         | 
| 43 | 
            +
                  P3p:
         | 
| 44 | 
            +
                  - CP="CAO CUR ADMa DEVa TAIa OUR DELa STP ONL NAV STA PUR"
         | 
| 45 | 
            +
                  Cf-Cache-Status:
         | 
| 46 | 
            +
                  - DYNAMIC
         | 
| 47 | 
            +
                  Expect-Ct:
         | 
| 48 | 
            +
                  - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
         | 
| 49 | 
            +
                  Server:
         | 
| 50 | 
            +
                  - cloudflare
         | 
| 51 | 
            +
                  Cf-Ray:
         | 
| 52 | 
            +
                  - 59882f95aed70b6f-AMS
         | 
| 53 | 
            +
                  Cf-Request-Id:
         | 
| 54 | 
            +
                  - 02e8fc118600000b6f68bae200000001
         | 
| 55 | 
            +
                body:
         | 
| 56 | 
            +
                  encoding: ASCII-8BIT
         | 
| 57 | 
            +
                  string: '{"success":true,"response":{"refund_request_id":12345}}'
         | 
| 58 | 
            +
                http_version: null
         | 
| 59 | 
            +
              recorded_at: Sun, 24 May 2020 15:52:48 GMT
         | 
| 60 | 
            +
            recorded_with: VCR 5.1.0
         | 
| @@ -0,0 +1,62 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://vendors.paddle.com/api/2.0/subscription/payments_reschedule
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: date=2020-12-31&payment_id=10710436&vendor_auth_code=<VENDOR_AUTH_CODE>&vendor_id=<VENDOR_ID>
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  User-Agent:
         | 
| 11 | 
            +
                  - Faraday v1.0.1
         | 
| 12 | 
            +
                  Content-Type:
         | 
| 13 | 
            +
                  - application/x-www-form-urlencoded
         | 
| 14 | 
            +
                  Accept-Encoding:
         | 
| 15 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            +
                  Accept:
         | 
| 17 | 
            +
                  - "*/*"
         | 
| 18 | 
            +
              response:
         | 
| 19 | 
            +
                status:
         | 
| 20 | 
            +
                  code: 200
         | 
| 21 | 
            +
                  message: OK
         | 
| 22 | 
            +
                headers:
         | 
| 23 | 
            +
                  Date:
         | 
| 24 | 
            +
                  - Sat, 23 May 2020 08:50:42 GMT
         | 
| 25 | 
            +
                  Content-Type:
         | 
| 26 | 
            +
                  - application/json
         | 
| 27 | 
            +
                  Content-Length:
         | 
| 28 | 
            +
                  - '32'
         | 
| 29 | 
            +
                  Connection:
         | 
| 30 | 
            +
                  - keep-alive
         | 
| 31 | 
            +
                  Set-Cookie:
         | 
| 32 | 
            +
                  - __cfduid=d69ac14ea4a637b45801bbb60a2c6333a1590223842; expires=Mon, 22-Jun-20
         | 
| 33 | 
            +
                    08:50:42 GMT; path=/; domain=.paddle.com; HttpOnly; SameSite=Lax
         | 
| 34 | 
            +
                  - paddle_session_vendor=eyJpdiI6InlhalluaDJ2RlI4aWt6bVIrQ2Q4N3ZYaFZUTWJEMWE0VXpGbEJXU3RhZjg9IiwidmFsdWUiOiJkNkNjTXE2MkJkUmRFNHgrZURFNlJ2OTZNYk80Z1dOekZkdnp3RG1ZS0E0Q0xiVDNFUDY5UTdXejc2MTVzUEJwWTY2VE8rVis1dDhxcVVZUUV0YUw4dz09IiwibWFjIjoiMzg2ZmY0Y2QzNjczOTFlZWJjYmYwZTM2MzIxMDcxNzk0OGY0NDI2YTViNmQ2MThiYTM4NjJhZmZhNWE4MjE4NiJ9;
         | 
| 35 | 
            +
                    expires=Sat, 23-May-2020 10:50:42 GMT; Max-Age=7200; path=/; domain=vendors.paddle.com;
         | 
| 36 | 
            +
                    secure; HttpOnly;SameSite=none;Secure
         | 
| 37 | 
            +
                  X-Powered-By:
         | 
| 38 | 
            +
                  - PHP/7.2.31
         | 
| 39 | 
            +
                  Cache-Control:
         | 
| 40 | 
            +
                  - no-cache
         | 
| 41 | 
            +
                  X-Frame-Options:
         | 
| 42 | 
            +
                  - sameorigin
         | 
| 43 | 
            +
                  P3p:
         | 
| 44 | 
            +
                  - CP="CAO CUR ADMa DEVa TAIa OUR DELa STP ONL NAV STA PUR"
         | 
| 45 | 
            +
                  Accept-Ranges:
         | 
| 46 | 
            +
                  - bytes
         | 
| 47 | 
            +
                  Cf-Cache-Status:
         | 
| 48 | 
            +
                  - DYNAMIC
         | 
| 49 | 
            +
                  Expect-Ct:
         | 
| 50 | 
            +
                  - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
         | 
| 51 | 
            +
                  Server:
         | 
| 52 | 
            +
                  - cloudflare
         | 
| 53 | 
            +
                  Cf-Ray:
         | 
| 54 | 
            +
                  - 597d87e4bf9772b1-AMS
         | 
| 55 | 
            +
                  Cf-Request-Id:
         | 
| 56 | 
            +
                  - 02e25342ee000072b10a290200000001
         | 
| 57 | 
            +
                body:
         | 
| 58 | 
            +
                  encoding: UTF-8
         | 
| 59 | 
            +
                  string: '{"success":true,"response":null}'
         | 
| 60 | 
            +
                http_version: null
         | 
| 61 | 
            +
              recorded_at: Sat, 23 May 2020 08:50:42 GMT
         | 
| 62 | 
            +
            recorded_with: VCR 5.1.0
         |