Transaction

dd24113f3d906b75e33c3aa7a3d1aadd4907715c337ce8b60c5e73b3e0b5ddf9
( - )
201,597
2021-02-09 15:09:58
1
10,842 B

7 Outputs

Total Output:
  • Q!_³‚Ûy˜Õ!¦×ÀR|PºåoP‡üšÓ9pÀÙ/˜ªQ®Mm({"summary":1,"identifiers":2,"keyDates":3,"creditStats":4,"tradingStats":5,"__cls":"class FacilitySC {\r\n constructor(\r\n owners = [],\r\n dealId = '',\r\n name = '',\r\n owningBranch = '',\r\n loanFormat = '',\r\n agentId = '',\r\n facilityTypeName = '',\r\n facilityTypeCode = '',\r\n accrualType = 'Accrual',\r\n ANSI = '',\r\n facilityControlNumber = '',\r\n ISIN = '',\r\n CUSIP = '',\r\n creditAgreementDate = '',\r\n effectiveDate = '',\r\n loanEffectiveDate = '',\r\n breakDate = '',\r\n expiryDate = '',\r\n finalMaturityDate = '',\r\n isMultiCurrency = false,\r\n multiCurrency = '',\r\n fxRate = 0,\r\n globalProposedAmount = 0,\r\n globalOriginationAmount = 0,\r\n repaymentRule = '',\r\n cancelationRule = '',\r\n prepaymentRule = '',\r\n facilityCurrency = '',\r\n ageFactor = 0,\r\n bidAsk = 0,\r\n creditRating = '',\r\n reportingCurrency = '',\r\n maxRate = 0,\r\n minRate = 0,\r\n spread = 0,\r\n maxSpread = 0,\r\n minSpread = 0,\r\n assignmentFeesRequired = false,\r\n assignmentFeeType = '',\r\n assignmentFee = 0,\r\n borrowerConsentRequired = false,\r\n agentConsentRequired = false,\r\n margin = 0,\r\n interestOption = '',\r\n baseRate = '',\r\n baseRateAmount = 0,\r\n creditAgreementName = '',\r\n purchaseRate = 0,\r\n RACRate = 0,\r\n averageLibor = 0,\r\n currentLibor = 0,\r\n exchangeRate = 0,\r\n createdBy = '',\r\n uploaded = '',\r\n lastModified = '',\r\n imported = false,\r\n isTerminated = false\r\n ) {\r\n this._owners = owners;\r\n\r\n this.summary = {\r\n dealId,\r\n name,\r\n owningBranch,\r\n loanFormat,\r\n agentId,\r\n };\r\n\r\n this.identifiers = {\r\n facilityTypeName,\r\n facilityTypeCode,\r\n accrualType,\r\n ANSI,\r\n facilityControlNumber,\r\n ISIN,\r\n CUSIP,\r\n };\r\n\r\n this.keyDates = {\r\n creditAgreementDate,\r\n effectiveDate,\r\n loanEffectiveDate,\r\n breakDate,\r\n expiryDate,\r\n finalMaturityDate,\r\n };\r\n\r\n this.creditStats = {\r\n isMultiCurrency,\r\n multiCurrency,\r\n fxRate,\r\n globalProposedAmount,\r\n numberOfShares: 0,\r\n globalOriginationAmount,\r\n amountUnavailable: 0,\r\n repaymentRule,\r\n cancelationRule,\r\n prepaymentRule,\r\n };\r\n\r\n this.tradingStats = {\r\n facilityCurrency,\r\n ageFactor,\r\n bidAsk,\r\n creditRating,\r\n reportingCurrency,\r\n maxRate,\r\n minRate,\r\n spread,\r\n maxSpread,\r\n minSpread,\r\n assignmentFeesRequired,\r\n assignmentFeeType,\r\n assignmentFee,\r\n borrowerConsentRequired,\r\n agentConsentRequired,\r\n margin,\r\n lastTradeAmount: '--',\r\n interestOption,\r\n baseRate,\r\n baseRateAmount,\r\n creditAgreementName,\r\n purchaseRate,\r\n RACRate,\r\n averageLibor,\r\n currentLibor,\r\n exchangeRate,\r\n };\r\n\r\n this.createdBy = createdBy;\r\n this.uploaded = uploaded;\r\n this.lastModified = lastModified;\r\n this.lendersOfRecord = [];\r\n this.facilityFees = [];\r\n this.imported = imported;\r\n this.isTerminated = isTerminated;\r\n }\r\n\r\n addShares(num) {\r\n this.creditStats.numberOfShares += num;\r\n }\r\n\r\n removeShares(num) {\r\n this.creditStats.numberOfShares -= num;\r\n }\r\n\r\n setDealId(dealId) {\r\n this.summary.dealId = dealId;\r\n }\r\n\r\n setCreditAgreementName(creditAgreementName) {\r\n this.tradingStats.creditAgreementName = creditAgreementName;\r\n }\r\n\r\n setImported(imported) {\r\n this.imported = imported;\r\n }\r\n\r\n setLastModified(lastModified) {\r\n this.lastModified = lastModified;\r\n }\r\n\r\n setLendersOfRecord(fundId, numberOfShares, timestamp = Date.now()) {\r\n const prev = this.lendersOfRecord.filter(x => x.fundId === fundId);\r\n const commitmentAmount = numberOfShares;\r\n if (prev.length !== 0) {\r\n prev[0].commitmentAmount += commitmentAmount;\r\n } else {\r\n this.lendersOfRecord.push({ fundId, status: 'Actual', commitmentAmount, timestamp });\r\n }\r\n }\r\n\r\n descreaseLendersOfRecord(fundId, numberOfShares) {\r\n const prev = this.lendersOfRecord.filter(x => x.fundId === fundId);\r\n const commitmentAmount = numberOfShares;\r\n if (!!prev && prev[0].commitmentAmount >= numberOfShares) {\r\n prev[0].commitmentAmount -= commitmentAmount;\r\n } else {\r\n throw new Error('Cannot descrease number of shares');\r\n }\r\n }\r\n\r\n transferPosition(fundFrom, fundTo, numberOfShares, timestamp) {\r\n this.setLendersOfRecord(fundTo, numberOfShares, timestamp);\r\n this.descreaseLendersOfRecord(fundFrom, numberOfShares);\r\n }\r\n\r\n addOwners(publicKeys) {\r\n this._owners = [...new Set(this._owners.concat(publicKeys))];\r\n this.tradingStats._owners = [...new Set(this._owners.concat(publicKeys))];\r\n this.creditStats._owners = [...new Set(this._owners.concat(publicKeys))];\r\n this.keyDates._owners = [...new Set(this._owners.concat(publicKeys))];\r\n this.identifiers._owners = [...new Set(this._owners.concat(publicKeys))];\r\n this.summary._owners = [...new Set(this._owners.concat(publicKeys))];\r\n }\r\n\r\n setAmountUnavailable(amountUnavailable) {\r\n this.creditStats.amountUnavailable = amountUnavailable;\r\n }\r\n\r\n setLastTradeAmount(lastTradeAmount) {\r\n this.tradingStats.lastTradeAmount = lastTradeAmount;\r\n }\r\n\r\n addFacilityFee(typeAndFee) {\r\n this.facilityFees.push(typeAndFee);\r\n }\r\n\r\n terminate() {\r\n this.isTerminated = true;\r\n }\r\n\r\n edit(\r\n dealId,\r\n name,\r\n owningBranch,\r\n loanFormat,\r\n facilityTypeName,\r\n facilityTypeCode,\r\n accrualType,\r\n ANSI,\r\n facilityControlNumber,\r\n ISIN,\r\n CUSIP,\r\n creditAgreementDate,\r\n effectiveDate,\r\n loanEffectiveDate,\r\n breakDate,\r\n expiryDate,\r\n finalMaturityDate,\r\n isMultiCurrency,\r\n multiCurrency,\r\n fxRate,\r\n globalProposedAmount,\r\n globalOriginationAmount,\r\n repaymentRule,\r\n cancelationRule,\r\n prepaymentRule,\r\n facilityCurrency,\r\n ageFactor,\r\n bidAsk,\r\n creditRating,\r\n reportingCurrency,\r\n maxRate,\r\n minRate,\r\n spread,\r\n maxSpread,\r\n minSpread,\r\n assignmentFeesRequired,\r\n assignmentFeeType,\r\n assignmentFee,\r\n borrowerConsentRequired,\r\n agentConsentRequired,\r\n margin,\r\n interestOption,\r\n baseRate,\r\n baseRateAmount,\r\n creditAgreementName,\r\n purchaseRate,\r\n RACRate,\r\n averageLibor,\r\n currentLibor,\r\n exchangeRate\r\n ) {\r\n this.summary.dealId = dealId;\r\n this.summary.name = name;\r\n this.summary.owningBranch = owningBranch;\r\n this.summary.loanFormat = loanFormat;\r\n this.identifiers.facilityTypeName = facilityTypeName;\r\n this.identifiers.facilityTypeCode = facilityTypeCode;\r\n this.identifiers.accrualType = accrualType;\r\n this.identifiers.ANSI = ANSI;\r\n this.identifiers.facilityControlNumber = facilityControlNumber;\r\n this.identifiers.ISIN = ISIN;\r\n this.identifiers.CUSIP = CUSIP;\r\n this.keyDates.creditAgreementDate = creditAgreementDate;\r\n this.keyDates.effectiveDate = effectiveDate;\r\n this.keyDates.loanEffectiveDate = loanEffectiveDate;\r\n this.keyDates.breakDate = breakDate;\r\n this.keyDates.expiryDate = expiryDate;\r\n this.keyDates.finalMaturityDate = finalMaturityDate;\r\n this.creditStats.isMultiCurrency = isMultiCurrency;\r\n this.creditStats.multiCurrency = multiCurrency;\r\n this.creditStats.fxRate = fxRate;\r\n this.creditStats.globalProposedAmount = globalProposedAmount;\r\n this.creditStats.globalOriginationAmount = globalOriginationAmount;\r\n this.creditStats.repaymentRule = repaymentRule;\r\n this.creditStats.cancelationRule = cancelationRule;\r\n this.creditStats.prepaymentRule = prepaymentRule;\r\n this.tradingStats.facilityCurrency = facilityCurrency;\r\n this.tradingStats.ageFactor = ageFactor;\r\n this.tradingStats.bidAsk = bidAsk;\r\n this.tradingStats.creditRating = creditRating;\r\n this.tradingStats.reportingCurrency = reportingCurrency;\r\n this.tradingStats.maxRate = maxRate;\r\n this.tradingStats.minRate = minRate;\r\n this.tradingStats.spread = spread;\r\n this.tradingStats.maxSpread = maxSpread;\r\n this.tradingStats.minSpread = minSpread;\r\n this.tradingStats.assignmentFeesRequired = assignmentFeesRequired;\r\n this.tradingStats.assignmentFeeType = assignmentFeeType;\r\n this.tradingStats.assignmentFee = assignmentFee;\r\n this.tradingStats.borrowerConsentRequired = borrowerConsentRequired;\r\n this.tradingStats.agentConsentRequired = agentConsentRequired;\r\n this.tradingStats.margin = margin;\r\n this.tradingStats.interestOption = interestOption;\r\n this.tradingStats.baseRate = baseRate;\r\n this.tradingStats.baseRateAmount = baseRateAmount;\r\n this.tradingStats.creditAgreementName = creditAgreementName;\r\n this.tradingStats.purchaseRate = purchaseRate;\r\n this.tradingStats.RACRate = RACRate;\r\n this.tradingStats.averageLibor = averageLibor;\r\n this.tradingStats.currentLibor = currentLibor;\r\n this.tradingStats.exchangeRate = exchangeRate;\r\n }\r\n}","__index":{"obj":0},"__func":"constructor","__args":[["025fb382db7998d521a6d7c0527c50bae56f5087fc9a0e90d33970c0d92f98aa0f"],"","Facility2 XML","owningBranch2","Revolver","414d839b9e4e133dafdded353ba21f1d79bc0a665a6c8d6fb82322cf6bac3acc:0","facilityTypeName2","facilityTypeCode2","Accrual","EX1234567","123456789","12456789111","123456789","01/01/2021","02/01/2021","03/01/2021","04/01/2021","05/01/2021","06/01/2021","true","USD","0","0","0","FIFO","FIFO","FIFO","USD","0","0","creditRating2","USD","0","0","0","0","0","true","Flat Amount","0","true","true","0","LIBOR","baseRate2","0","","0","0","0","0","0","414d839b9e4e133dafdded353ba21f1d79bc0a665a6c8d6fb82322cf6bac3acc:0","02/09/2021","02/09/2021",true,false]}u
    https://whatsonchain.com/tx/dd24113f3d906b75e33c3aa7a3d1aadd4907715c337ce8b60c5e73b3e0b5ddf9
  • Q!_³‚Ûy˜Õ!¦×ÀR|PºåoP‡üšÓ9pÀÙ/˜ªQ®{}u
    https://whatsonchain.com/tx/dd24113f3d906b75e33c3aa7a3d1aadd4907715c337ce8b60c5e73b3e0b5ddf9
  • Q!_³‚Ûy˜Õ!¦×ÀR|PºåoP‡üšÓ9pÀÙ/˜ªQ®{}u
    https://whatsonchain.com/tx/dd24113f3d906b75e33c3aa7a3d1aadd4907715c337ce8b60c5e73b3e0b5ddf9
  • Q!_³‚Ûy˜Õ!¦×ÀR|PºåoP‡üšÓ9pÀÙ/˜ªQ®{}u
    https://whatsonchain.com/tx/dd24113f3d906b75e33c3aa7a3d1aadd4907715c337ce8b60c5e73b3e0b5ddf9
  • Q!_³‚Ûy˜Õ!¦×ÀR|PºåoP‡üšÓ9pÀÙ/˜ªQ®{}u
    https://whatsonchain.com/tx/dd24113f3d906b75e33c3aa7a3d1aadd4907715c337ce8b60c5e73b3e0b5ddf9
  • Q!_³‚Ûy˜Õ!¦×ÀR|PºåoP‡üšÓ9pÀÙ/˜ªQ®{}u
    https://whatsonchain.com/tx/dd24113f3d906b75e33c3aa7a3d1aadd4907715c337ce8b60c5e73b3e0b5ddf9
Total Output: